diff options
author | Karl Berry <karl@gnu.org> | 1999-02-15 13:15:05 +0000 |
---|---|---|
committer | Karl Berry <karl@gnu.org> | 1999-02-15 13:15:05 +0000 |
commit | 58085071441553b34ad1b06cd3f328bc15705383 (patch) | |
tree | 7d8e7141140c670d928e80ec9a85536b11c0c19e | |
parent | e3ef8e974cec43a6a53b6568c7915c41e9633119 (diff) | |
download | gunmake-58085071441553b34ad1b06cd3f328bc15705383.tar.gz |
* 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.
-rw-r--r-- | texinfo.tex | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/texinfo.tex b/texinfo.tex index 0481145..332e392 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{1999-02-09}% +\def\texinfoversion{1999-02-14.16}% % % Copyright (C) 1985, 86, 88, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99 % Free Software Foundation, Inc. @@ -735,8 +735,26 @@ where each line of input produces a line of output.} \let\c=\comment -% @paragraphindent is defined for the Info formatting commands only. -\let\paragraphindent=\comment +% @paragraphindent NCHARS +% 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. % @@ -4794,7 +4812,7 @@ width0pt\relax} \fi % @alias. -\def\alias#1=#2{\let#1=#2} +\def\alias#1=#2{\gdef#1{#2}} \message{cross references,} @@ -5602,6 +5620,6 @@ should work if nowhere else does.} @c eval: (add-hook 'write-file-hooks 'time-stamp) @c page-delimiter: "^\\\\message" @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 End: |