With Texinfo 5.1, groff.texinfo fails to build as follows: groff.texinfo:11937: macro `Defesc' called with too many args
This looks like a legitimate error that makeinfo just didn't spot before. Here's a patch. 2013-07-02 Colin Watson <[email protected]> * doc/groff.texinfo: Fix syntax error in documentation of `\z'. Index: doc/groff.texinfo =================================================================== RCS file: /sources/groff/groff/doc/groff.texinfo,v retrieving revision 1.320 diff -p -u -r1.320 groff.texinfo --- doc/groff.texinfo 5 Mar 2013 08:21:13 -0000 1.320 +++ doc/groff.texinfo 2 Jul 2013 09:14:54 -0000 @@ -11934,7 +11934,7 @@ centered, and the resulting spacing is t glyphs. @endDefesc -@Defesc {\\z, , g, , } +@Defesc {\\z, , g, } @cindex zero-width printing (@code{\z}, @code{\Z}) @cindex printing, zero-width (@code{\z}, @code{\Z}) Print glyph @var{g} with zero width, i.e., without spacing. Use this to Thanks, -- Colin Watson [[email protected]] _______________________________________________ bug-groff mailing list [email protected] https://lists.gnu.org/mailman/listinfo/bug-groff
