diff options
author | Karl Berry <karl@gnu.org> | 1998-12-21 15:36:12 +0000 |
---|---|---|
committer | Karl Berry <karl@gnu.org> | 1998-12-21 15:36:12 +0000 |
commit | 71aacd9fe0cc434ef737cee143b20e7c24644117 (patch) | |
tree | f2de13e28814cccb01c5272192d1f2749846580f /texinfo.tex | |
parent | dc7cf1c4b2357ce47c530ea56e24cd8df17057b9 (diff) | |
download | gunmake-71aacd9fe0cc434ef737cee143b20e7c24644117.tar.gz |
* texinfo.tex (\indexdummies): Set \{ and \} to \mylbrace and
\mybrace to avoid braces in the index file, which
texindex can't handle.
Diffstat (limited to 'texinfo.tex')
-rw-r--r-- | texinfo.tex | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/texinfo.tex b/texinfo.tex index 768fbb8..afe017e 100644 --- a/texinfo.tex +++ b/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{1998-12-20}% % % 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 }% |