From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23242 invoked by alias); 12 Apr 2013 22:50:56 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 31263 Received: (qmail 28932 invoked from network); 12 Apr 2013 22:50:52 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 Received-SPF: neutral (ns1.primenet.com.au: 74.125.82.53 is neither permitted nor denied by SPF record at ntlworld.com) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-proxyuser-ip:date:from:to:subject:message-id :in-reply-to:references:x-mailer:mime-version:content-type :content-transfer-encoding:x-gm-message-state; bh=K4qejrBNhyYUdn7iqa6/aZGw/1Fhgd5bmFY+Le0DutA=; b=V8iiUprb7BAU8zi9imIEdrC2KvoqzTHL8Vgrf3ZNaUu8GcXMIIIw5+RhIq2UNEOWzr jmQUdk7Zelg2nNXiQANY7ABwALikXiSbyXF2qh+1VrtSWK7KKGJdCMDdauEi9MMDr61Z F+fn899RgPSDGJpHnlHHsCeJBThHGafwT/OYgVZrm78G9/q4/2cPabTYEcA1zA69N5RJ Mc3YgzojTbar7DUUuaRm3wHCGF4kPQV3LwV3OXSFKNy9PIBVZaCsgFOb9+wieCCqI/NU j0LmDvBA8l4ywq6wk6uUZNNqwoM50M/lcNveIyJYdkCZTpA3yGWol2nUumZkwi9g3NeS KqeQ== X-Received: by 10.180.80.3 with SMTP id n3mr387978wix.20.1365803466305; Fri, 12 Apr 2013 14:51:06 -0700 (PDT) X-ProxyUser-IP: 86.6.30.159 Date: Fri, 12 Apr 2013 22:51:02 +0100 From: Peter Stephenson To: zsh-workers@zsh.org Subject: Re: "make info" fails with new versions of texinfo Message-ID: <20130412225102.7ecaf26a@pws-pc.ntlworld.com> In-Reply-To: <878v4n327q.fsf@ft.bewatermyfriend.org> References: <87hajc2htk.fsf@ft.bewatermyfriend.org> <87d2u02h52.fsf@ft.bewatermyfriend.org> <20130412202357.3208e2cb@pws-pc.ntlworld.com> <878v4n327q.fsf@ft.bewatermyfriend.org> X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.7; x86_64-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQlxze4RkoxIilNhHk1YKSLhglcRdQJfzZvRAWyR3dzpzjAIvCQjGJM8YiQYqPq+FKXnhNli On Fri, 12 Apr 2013 22:48:09 +0200 Frank Terbeck wrote: > Yes, now the build succeeds. The only remaining output are a few > warnings: > > [snip] > makeinfo ./zsh.texi > ./zsh.texi:25009: warning: @item missing argument > ./zsh.texi:25012: warning: @item missing argument > ./zsh.texi:25015: warning: @item missing argument > make[1]: Leaving directory `/home/hawk/src/sys/zsh/Doc' > [snap] That appears to be in the source itself; we just need to add an argument. diff --git a/Doc/Zsh/mod_curses.yo b/Doc/Zsh/mod_curses.yo index d3f8ad2..cd7e260 100644 --- a/Doc/Zsh/mod_curses.yo +++ b/Doc/Zsh/mod_curses.yo @@ -84,11 +84,11 @@ The subcommand tt(position) writes various positions associated with var(targetwin) into the array named var(array). These are, in order: startsitem() -sitem()(The y and x coordinates of the cursor relative to the top left +sitem(*)(The y and x coordinates of the cursor relative to the top left of var(targetwin)) -sitem()(The y and x coordinates of the top left of var(targetwin) on the +sitem(*)(The y and x coordinates of the top left of var(targetwin) on the screen) -sitem()(The size of var(targetwin) in y and x dimensions.) +sitem(*)(The size of var(targetwin) in y and x dimensions.) endsitem() Outputting characters and strings are achieved by tt(char) and tt(string) -- Peter Stephenson Web page now at http://homepage.ntlworld.com/p.w.stephenson/