1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
Author: Jordi Mallach <jordi@debian.org>
Description: fix texinfo build with texinfo 5.x.
Texinfo 5.0 is more strict about some syntax errors. This patch fixes
some fatal issues with @itemx usage.
Forwarded: yes
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=713327
Index: mailutils-2.99.99/doc/texinfo/programs.texi
===================================================================
--- mailutils-2.99.99.orig/doc/texinfo/programs.texi
+++ mailutils-2.99.99/doc/texinfo/programs.texi
@@ -120,8 +120,8 @@ equal sign.
@table @option
@xopindex{help, described}
-@item --help
-@itemx -?
+@item -?
+@itemx --help
Display a short summary of the command line options understood by
this utilities, along with a terse description of each.
@@ -183,8 +183,8 @@ configurable. @xref{Usage Vars}, for a
@table @option
@xopindex{version, described}
-@item --version
-@itemx -V
+@item -V
+@itemx --version
Print program version and exit.
@xopindex{show-config-options, described}
@@ -5052,7 +5052,7 @@ Keep on going if execution fails on a me
@ref{Sieve Configuration, keep-going}.
@item -L @var{dir}
-@item --libdir=@var{dir}
+@itemx --libdir=@var{dir}
Append directory @var{dir} to the list of directories searched for
library files. See also @ref{Sieve Configuration, library-path}.
|