Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: "make info" fails with new versions of texinfo



On Fri, 12 Apr 2013 22:48:09 +0200
Frank Terbeck <ft@xxxxxxxxxxxxxxxxxxx> 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 <p.w.stephenson@xxxxxxxxxxxx>
Web page now at http://homepage.ntlworld.com/p.w.stephenson/



Messages sorted by: Reverse Date, Date, Thread, Author