Thu Jan 16 10:28:32 CET 2003 Stepan Kasal * doc/texinfo.tex (\refx): Set locally \idexdummies before expanding the \csname, in case there are macros; foreign accents, for example. --- ../texinfo/doc/texinfo.tex Sun Jan 12 20:34:34 2003 +++ ./texinfo.tex Thu Jan 16 17:08:08 2003 @@ -5879,7 +5879,12 @@ % If its value is nonempty, SUFFIX is output afterward. \def\refx#1#2{% - \expandafter\ifx\csname X#1\endcsname\relax + {% + \indexdummies + \expandafter\global\expandafter\let\expandafter\thisrefX + \csname X#1\endcsname + }% + \ifx\thisrefX\relax % If not defined, say something at least. \angleleft un\-de\-fined\angleright \iflinks @@ -5894,7 +5899,7 @@ \fi \else % It's defined, so just use it. - \csname X#1\endcsname + \thisrefX \fi #2% Output the suffix in any case. }