diff options
| author | Paul Eggert | 2012-11-11 19:10:51 -0800 |
|---|---|---|
| committer | Paul Eggert | 2012-11-11 19:10:51 -0800 |
| commit | 31f47fbaead299941c22a133ed7e2928c7b1273e (patch) | |
| tree | 38e0f5b8f44e43bf17a455cb2b9c84d1f8640387 /doc | |
| parent | 12cc43375014a952bf5a62e6981f1e45a28dded4 (diff) | |
| download | emacs-31f47fbaead299941c22a133ed7e2928c7b1273e.tar.gz emacs-31f47fbaead299941c22a133ed7e2928c7b1273e.zip | |
* texinfo.tex: Merge from gnulib.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/misc/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/misc/texinfo.tex | 37 |
2 files changed, 32 insertions, 9 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 2518e72ef1e..9e1e0a78c9f 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-11-12 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * texinfo.tex: Merge from gnulib. | ||
| 4 | |||
| 1 | 2012-11-10 Chong Yidong <cyd@gnu.org> | 5 | 2012-11-10 Chong Yidong <cyd@gnu.org> |
| 2 | 6 | ||
| 3 | * url.texi (Introduction): Move url-configuration-directory to | 7 | * url.texi (Introduction): Move url-configuration-directory to |
diff --git a/doc/misc/texinfo.tex b/doc/misc/texinfo.tex index f3093d0853f..b5f31415771 100644 --- a/doc/misc/texinfo.tex +++ b/doc/misc/texinfo.tex | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | % Load plain if necessary, i.e., if running under initex. | 3 | % Load plain if necessary, i.e., if running under initex. |
| 4 | \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi | 4 | \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi |
| 5 | % | 5 | % |
| 6 | \def\texinfoversion{2012-09-12.16} | 6 | \def\texinfoversion{2012-11-08.11} |
| 7 | % | 7 | % |
| 8 | % Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, | 8 | % Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, |
| 9 | % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, | 9 | % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, |
| @@ -6559,16 +6559,9 @@ end | |||
| 6559 | \makedispenvdef{quotation}{\quotationstart} | 6559 | \makedispenvdef{quotation}{\quotationstart} |
| 6560 | % | 6560 | % |
| 6561 | \def\quotationstart{% | 6561 | \def\quotationstart{% |
| 6562 | {\parskip=0pt \aboveenvbreak}% because \aboveenvbreak inserts \parskip | 6562 | \indentedblockstart % same as \indentedblock, but increase right margin too. |
| 6563 | \parindent=0pt | ||
| 6564 | % | ||
| 6565 | % @cartouche defines \nonarrowing to inhibit narrowing at next level down. | ||
| 6566 | \ifx\nonarrowing\relax | 6563 | \ifx\nonarrowing\relax |
| 6567 | \advance\leftskip by \lispnarrowing | ||
| 6568 | \advance\rightskip by \lispnarrowing | 6564 | \advance\rightskip by \lispnarrowing |
| 6569 | \exdentamount = \lispnarrowing | ||
| 6570 | \else | ||
| 6571 | \let\nonarrowing = \relax | ||
| 6572 | \fi | 6565 | \fi |
| 6573 | \parsearg\quotationlabel | 6566 | \parsearg\quotationlabel |
| 6574 | } | 6567 | } |
| @@ -6594,6 +6587,32 @@ end | |||
| 6594 | \fi | 6587 | \fi |
| 6595 | } | 6588 | } |
| 6596 | 6589 | ||
| 6590 | % @indentedblock is like @quotation, but indents only on the left and | ||
| 6591 | % has no optional argument. | ||
| 6592 | % | ||
| 6593 | \makedispenvdef{indentedblock}{\indentedblockstart} | ||
| 6594 | % | ||
| 6595 | \def\indentedblockstart{% | ||
| 6596 | {\parskip=0pt \aboveenvbreak}% because \aboveenvbreak inserts \parskip | ||
| 6597 | \parindent=0pt | ||
| 6598 | % | ||
| 6599 | % @cartouche defines \nonarrowing to inhibit narrowing at next level down. | ||
| 6600 | \ifx\nonarrowing\relax | ||
| 6601 | \advance\leftskip by \lispnarrowing | ||
| 6602 | \exdentamount = \lispnarrowing | ||
| 6603 | \else | ||
| 6604 | \let\nonarrowing = \relax | ||
| 6605 | \fi | ||
| 6606 | } | ||
| 6607 | |||
| 6608 | % Keep a nonzero parskip for the environment, since we're doing normal filling. | ||
| 6609 | % | ||
| 6610 | \def\Eindentedblock{% | ||
| 6611 | \par | ||
| 6612 | {\parskip=0pt \afterenvbreak}% | ||
| 6613 | } | ||
| 6614 | \def\Esmallindentedblock{\Eindentedblock} | ||
| 6615 | |||
| 6597 | 6616 | ||
| 6598 | % LaTeX-like @verbatim...@end verbatim and @verb{<char>...<char>} | 6617 | % LaTeX-like @verbatim...@end verbatim and @verb{<char>...<char>} |
| 6599 | % If we want to allow any <char> as delimiter, | 6618 | % If we want to allow any <char> as delimiter, |