texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

texinfo ChangeLog texi2html/texi2html.pl


From: Patrice Dumas
Subject: texinfo ChangeLog texi2html/texi2html.pl
Date: Tue, 27 Jul 2010 07:31:10 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     Patrice Dumas <pertusus>        10/07/27 07:31:10

Modified files:
        .              : ChangeLog 
        texi2html      : texi2html.pl 

Log message:
                * texi2html/texi2html.pl: use the actual values for defaults
                in texi2html description of command line options.  Report from 
                Karl.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/ChangeLog?cvsroot=texinfo&r1=1.1081&r2=1.1082
http://cvs.savannah.gnu.org/viewcvs/texinfo/texi2html/texi2html.pl?cvsroot=texinfo&r1=1.410&r2=1.411

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.1081
retrieving revision 1.1082
diff -u -b -r1.1081 -r1.1082
--- ChangeLog   26 Jul 2010 23:28:10 -0000      1.1081
+++ ChangeLog   27 Jul 2010 07:31:08 -0000      1.1082
@@ -1,3 +1,9 @@
+2010-07-27  Patrice Dumas  <address@hidden>
+
+       * texi2html/texi2html.pl: use the actual values for defaults
+       in texi2html description of command line options.  Report from 
+       Karl.
+
 2010-07-26  Karl Berry  <address@hidden>
 
        * util/gendocs.sh: pass SETLANG to texi2dvi invocations, too.

Index: texi2html/texi2html.pl
===================================================================
RCS file: /sources/texinfo/texinfo/texi2html/texi2html.pl,v
retrieving revision 1.410
retrieving revision 1.411
diff -u -b -r1.410 -r1.411
--- texi2html/texi2html.pl      26 Jul 2010 00:08:57 -0000      1.410
+++ texi2html/texi2html.pl      27 Jul 2010 07:31:09 -0000      1.411
@@ -90,7 +90,7 @@
 }
 
 # CVS version:
-# $Id: texi2html.pl,v 1.410 2010/07/26 00:08:57 karl Exp $
+# $Id: texi2html.pl,v 1.411 2010/07/27 07:31:09 pertusus Exp $
 
 # Homepage:
 my $T2H_HOMEPAGE = "http://www.gnu.org/software/texinfo/";;
@@ -3099,21 +3099,21 @@
 {
  type => '=i',
  linkage => sub {set_from_cmdline('ERROR_LIMIT', $_[1]);},
- verbose => 'quit after NUM errors (default 100).',
+ verbose => 'quit after NUM errors (default '.get_conf('ERROR_LIMIT').').',
 };
 
 $T2H_OPTIONS -> {'split-size'} =
 {
  type => '=s',
  linkage => sub {set_from_cmdline('SPLIT_SIZE', $_[1])},
- verbose => 'split Info files at size s (default 300000).',
+ verbose => 'split Info files at size s (default '.get_conf('SPLIT_SIZE').').',
 };
 
 $T2H_OPTIONS -> {'paragraph-indent|p'} =
 {
  type => '=s',
  linkage => sub {set_paragraphindent($_[1], 1);},
- 'verbose' => "indent Info paragraphs by VAL spaces (default 3).
+ 'verbose' => "indent Info paragraphs by VAL spaces (default 
".get_conf('paragraphindent').").
                               If VAL is `none', do not indent; if VAL is
                                 `asis', preserve existing indentation.",
 };



reply via email to

[Prev in Thread] Current Thread [Next in Thread]