2003-09-17 Stepan Kasal * doc/texinfo.tex (\dosuppressfirstparagraphindent): change the redefinition of \indent and \noindent and factor out common parts of all redefinitions to ... (\restorefirstparagraphindent): ... a new macro. --- texinfo.tex Wed Sep 17 13:19:25 2003 +++ texinfo.tex Wed Sep 17 15:18:08 2003 @@ -922,18 +922,24 @@ % \gdef\dosuppressfirstparagraphindent{% \gdef\indent{% - \global\let\indent=\ptexindent - \global\let\noindent=\ptexnoindent - \global\everypar = {}% + \restorefirstparagraphindent + \indent + }% + \gdef\noindent{% + \restorefirstparagraphindent + \noindent }% - \gdef\noindent{}% \global\everypar = {% - \kern-\parindent - \global\let\indent=\ptexindent - \global\let\noindent=\ptexnoindent - \global\everypar = {}% + \kern -\parindent + \restorefirstparagraphindent }% -}% +} + +\gdef\restorefirstparagraphindent{% + \global \let \indent = \ptexindent + \global \let \noindent = \ptexnoindent + \global \everypar = {}% +} % @asis just yields its argument. Used with @table, for example.