texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Sat Aug 14 12:22:01 EDT 2004)


From: Karl Berry
Subject: texinfo update (Sat Aug 14 12:22:01 EDT 2004)
Date: Sat, 14 Aug 2004 12:22:25 -0400

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.371
retrieving revision 1.373
diff -c -r1.371 -r1.373
*** ChangeLog   14 Aug 2004 00:54:34 -0000      1.371
--- ChangeLog   14 Aug 2004 16:06:09 -0000      1.373
***************
*** 1,3 ****
--- 1,11 ----
+ 2004-08-14  Karl Berry  <address@hidden>
+ 
+       * doc/texinfo.tex (\cslet): equivalent-or-better, and shorter,
+       version from dak, 12 Aug 2004 19:17:27 +0200.
+ 
+       * doc/texinfo.txi (makeinfo options): use --no-number-sections
+               with non-hierarchical manuals.
+ 
  2004-08-13  Karl Berry  <address@hidden>
  
        * util/texi2dvi: check for -file-line-error, since -style is no
Index: doc/texinfo.tex
===================================================================
RCS file: /cvsroot/texinfo/texinfo/doc/texinfo.tex,v
retrieving revision 1.167
retrieving revision 1.168
diff -c -r1.167 -r1.168
*** doc/texinfo.tex     31 Jul 2004 18:49:51 -0000      1.167
--- doc/texinfo.tex     14 Aug 2004 16:06:10 -0000      1.168
***************
*** 3,9 ****
  % Load plain if necessary, i.e., if running under initex.
  \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
  %
! \def\texinfoversion{2004-07-31.11}
  %
  % Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
  % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
--- 3,9 ----
  % Load plain if necessary, i.e., if running under initex.
  \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
  %
! \def\texinfoversion{2004-08-14.09}
  %
  % Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
  % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
***************
*** 5477,5489 ****
                      % \do\macro1\do\macro2...
  
  % Utility routines.
! % This does \let #1 = #2, except with \csnames.
  \def\cslet#1#2{%
! \expandafter\expandafter
! \expandafter\let
! \expandafter\expandafter
! \csname#1\endcsname
! \csname#2\endcsname}
  
  % Trim leading and trailing spaces off a string.
  % Concepts from aro-bend problem 15 (see CTAN).
--- 5477,5491 ----
                      % \do\macro1\do\macro2...
  
  % Utility routines.
! % This does \let #1 = #2, with \csnames; that is,
! %   \let \csname#1\endcsname = \csname#2\endcsname
! % (except of course we have to play expansion games).
! % 
  \def\cslet#1#2{%
!   \expandafter\let
!   \csname#1\expandafter\endcsname
!   \csname#2\endcsname
! }
  
  % Trim leading and trailing spaces off a string.
  % Concepts from aro-bend problem 15 (see CTAN).
Index: doc/texinfo.txi
===================================================================
RCS file: /cvsroot/texinfo/texinfo/doc/texinfo.txi,v
retrieving revision 1.106
retrieving revision 1.107
diff -c -r1.106 -r1.107
*** doc/texinfo.txi     31 Jul 2004 18:49:51 -0000      1.106
--- doc/texinfo.txi     14 Aug 2004 16:00:26 -0000      1.107
***************
*** 1,5 ****
  \input texinfo.tex    @c -*-texinfo-*-
! @c $Id: texinfo.txi,v 1.106 2004/07/31 18:49:51 karl Exp $
  @c Ordinarily, Texinfo files have the extension .texi.  But texinfo.texi
  @c clashes with texinfo.tex on 8.3 filesystems, so we use texinfo.txi.
  
--- 1,5 ----
  \input texinfo.tex    @c -*-texinfo-*-
! @c $Id: texinfo.txi,v 1.107 2004/08/14 16:00:26 karl Exp $
  @c Ordinarily, Texinfo files have the extension .texi.  But texinfo.texi
  @c clashes with texinfo.tex on 8.3 filesystems, so we use texinfo.txi.
  
***************
*** 15027,15032 ****
--- 15027,15043 ----
  specified, then @samp{@@ifhtml} and @samp{@@html} blocks will not be
  read, and @samp{@@ifnothtml} blocks will be.
  
+ @item --no-number-footnotes
+ @opindex --no-number-footnotes
+ Suppress automatic footnote numbering.  By default, @code{makeinfo}
+ numbers each footnote sequentially in a single node, resetting the
+ current footnote number to 1 at the start of each node.
+ 
+ @item --no-number-sections
+ @opindex --no-number-sections
+ Do not output chapter, section, and appendix numbers.
+ You need to specify this if your manual is not hierarchically-structured.
+ 
  @item --no-split
  @opindex --no-split
  @cindex Splitting of output files
***************
*** 15057,15068 ****
  @item --number-sections
  @opindex --number-sections
  Output chapter, section, and appendix numbers as in printed manuals.
! 
! @item --no-number-footnotes
! @opindex --no-number-footnotes
! Suppress automatic footnote numbering.  By default, @code{makeinfo}
! numbers each footnote sequentially in a single node, resetting the
! current footnote number to 1 at the start of each node.
  
  @item address@hidden
  @itemx -o @var{file}
--- 15068,15075 ----
  @item --number-sections
  @opindex --number-sections
  Output chapter, section, and appendix numbers as in printed manuals.
! This is the default.  It works only with hierarchically-structured
! manuals.
  
  @item address@hidden
  @itemx -o @var{file}
***************
*** 18303,18309 ****
  Concurrent Versions System}) or RCS (see rcsintro(1)) version control
  systems, which expand it into a string such as:
  @example
! $Id: texinfo.txi,v 1.106 2004/07/31 18:49:51 karl Exp $
  @end example
  (This is useful in all sources that use version control, not just manuals.)
  You may wish to include the @samp{$Id:} comment in the @code{@@copying}
--- 18310,18316 ----
  Concurrent Versions System}) or RCS (see rcsintro(1)) version control
  systems, which expand it into a string such as:
  @example
! $Id: texinfo.txi,v 1.107 2004/08/14 16:00:26 karl Exp $
  @end example
  (This is useful in all sources that use version control, not just manuals.)
  You may wish to include the @samp{$Id:} comment in the @code{@@copying}
***************
*** 18369,18375 ****
  
  @verbatim
  \input texinfo   @c -*-texinfo-*-
! @comment $Id: texinfo.txi,v 1.106 2004/07/31 18:49:51 karl Exp $
  @comment %**start of header
  @setfilename sample.info
  @include version.texi
--- 18376,18382 ----
  
  @verbatim
  \input texinfo   @c -*-texinfo-*-
! @comment $Id: texinfo.txi,v 1.107 2004/08/14 16:00:26 karl Exp $
  @comment %**start of header
  @setfilename sample.info
  @include version.texi
P ChangeLog
P doc/texinfo.tex
P doc/texinfo.txi


reply via email to

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