diff options
author | Jim Meyering <jim@meyering.net> | 1999-01-06 16:09:14 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-01-06 16:09:14 +0000 |
commit | 29547b55e4685635cd4ff2b15983af506c3967af (patch) | |
tree | 39bbab9a4eff7bf1e3243e335faeed0816c43b1f /doc | |
parent | 15633a30c4f33d8fd3033aa628ae91dad496a38e (diff) | |
download | coreutils-29547b55e4685635cd4ff2b15983af506c3967af.tar.xz |
import latest
Diffstat (limited to 'doc')
-rw-r--r-- | doc/texinfo.tex | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/doc/texinfo.tex b/doc/texinfo.tex index 768fbb8e4..aa52853e7 100644 --- a/doc/texinfo.tex +++ b/doc/texinfo.tex @@ -3,7 +3,7 @@ % Load plain if necessary, i.e., if running under initex. \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi % -\def\texinfoversion{1998-12-19}% +\def\texinfoversion{1999-01-05}% % % Copyright (C) 1985, 86, 88, 90, 91, 92, 93, 94, 95, 96, 97, 98 % Free Software Foundation, Inc. @@ -2401,9 +2401,11 @@ width0pt\relax} \fi % (Must be a way to avoid doing expansion at all, and thus not have to % laboriously list every single command here.) \def\@{@}% will be @@ when we switch to @ as escape char. -% need these in case \tex is in effect and \{ is a \delimiter again. -\let\{ = \lbracecmd -\let\} = \rbracecmd +% Need these in case \tex is in effect and \{ is a \delimiter again. +% But can't use \lbracecmd and \rbracecmd because texindex assumes +% braces and backslashes are used only as delimiters. +\let\{ = \mylbrace +\let\} = \myrbrace \def\_{{\realbackslash _}}% \def\w{\realbackslash w }% \def\bf{\realbackslash bf }% @@ -2834,7 +2836,7 @@ width0pt\relax} \fi \unvbox255 \kern-\topskip \kern\baselineskip }}% - \eject + \eject % run that output routine to set \partialpage % % Use the double-column output routine for subsequent pages. \output = {\doublecolumnout}% @@ -2895,7 +2897,7 @@ width0pt\relax} \fi } \def\enddoublecolumns{% \output = {% - % Split the last of the double-column material. Leave on the + % Split the last of the double-column material. Leave it on the % current page, no automatic page break. \balancecolumns % @@ -2907,14 +2909,15 @@ width0pt\relax} \fi % called on to balance too much material, but if it is, this makes % the output somewhat more palatable.) \global\output = {\onepageout{\pagecontents\PAGE}}% - % - % \pagegoal was set to the doubled \vsize above, since we restarted - % the current page. We're now back to normal single-column - % typesetting, so reset \pagegoal to the normal \vsize. - \pagegoal = \vsize }% \eject \endgroup % started in \begindoublecolumns + % + % \pagegoal was set to the doubled \vsize above, since we restarted + % the current page. We're now back to normal single-column + % typesetting, so reset \pagegoal to the normal \vsize (after the + % \endgroup where \vsize got restored). + \pagegoal = \vsize } \def\balancecolumns{% % Called at the end of the double column material. |