* texinfo.tex (\paragraphindent): implement.

Suggestion from: Paul DuBois <dubois@primate.wisc.edu>.
	* texinfo.tex (\alias): use def rather than \let.
	Change timestamp format to include hours.
This commit is contained in:
Karl Berry 1999-02-15 13:15:05 +00:00
parent e3ef8e974c
commit 5808507144

View file

@ -3,7 +3,7 @@
% Load plain if necessary, i.e., if running under initex. % Load plain if necessary, i.e., if running under initex.
\expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
% %
\def\texinfoversion{1999-02-09}% \def\texinfoversion{1999-02-14.16}%
% %
% Copyright (C) 1985, 86, 88, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99 % Copyright (C) 1985, 86, 88, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99
% Free Software Foundation, Inc. % Free Software Foundation, Inc.
@ -735,8 +735,26 @@ where each line of input produces a line of output.}
\let\c=\comment \let\c=\comment
% @paragraphindent is defined for the Info formatting commands only. % @paragraphindent NCHARS
\let\paragraphindent=\comment % We'll use ems for NCHARS, close enough.
% We cannot implement @paragraphindent asis, though.
%
\def\asisword{asis} % no translation, these are keywords
\def\noneword{none}
%
\def\paragraphindent{\parsearg\doparagraphindent}
\def\doparagraphindent#1{%
\def\temp{#1}%
\ifx\temp\asisword
\else
\ifx\temp\noneword
\defaultparindent = 0pt
\else
\defaultparindent = #1em
\fi
\fi
\parindent = \defaultparindent
}
% @asis just yields its argument. Used with @table, for example. % @asis just yields its argument. Used with @table, for example.
% %
@ -4794,7 +4812,7 @@ width0pt\relax} \fi
% @alias. % @alias.
\def\alias#1=#2{\let#1=#2} \def\alias#1=#2{\gdef#1{#2}}
\message{cross references,} \message{cross references,}
@ -5602,6 +5620,6 @@ should work if nowhere else does.}
@c eval: (add-hook 'write-file-hooks 'time-stamp) @c eval: (add-hook 'write-file-hooks 'time-stamp)
@c page-delimiter: "^\\\\message" @c page-delimiter: "^\\\\message"
@c time-stamp-start: "def\\\\texinfoversion{" @c time-stamp-start: "def\\\\texinfoversion{"
@c time-stamp-format: "%:y-%02m-%02d" @c time-stamp-format: "%:y-%02m-%02d.%H"
@c time-stamp-end: "}" @c time-stamp-end: "}"
@c End: @c End: