diff options
| author | Paul Eggert | 2013-08-26 15:17:31 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-08-26 15:17:31 -0700 |
| commit | 12c4970d70ae32fdcc81af55e1b2ff74afe96c93 (patch) | |
| tree | 9992501d84c990d4c6d53dcaf176e0cea23315df | |
| parent | f462f0750f4cd3537ab1da5cf8ed64e08e55ea46 (diff) | |
| download | emacs-12c4970d70ae32fdcc81af55e1b2ff74afe96c93.tar.gz emacs-12c4970d70ae32fdcc81af55e1b2ff74afe96c93.zip | |
Minor merge from gnulib (mostly just for texinfo.tex).
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | doc/misc/texinfo.tex | 10 | ||||
| -rw-r--r-- | m4/sha256.m4 | 3 | ||||
| -rw-r--r-- | m4/sha512.m4 | 3 |
4 files changed, 13 insertions, 7 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-08-26 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Minor merge from gnulib (mostly just for texinfo.tex). | ||
| 4 | |||
| 1 | 2013-08-22 Paul Eggert <eggert@cs.ucla.edu> | 5 | 2013-08-22 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 6 | ||
| 3 | * configure.ac (EMACS_CONFIG_OPTIONS): Quote systematically (Bug#13274). | 7 | * configure.ac (EMACS_CONFIG_OPTIONS): Quote systematically (Bug#13274). |
diff --git a/doc/misc/texinfo.tex b/doc/misc/texinfo.tex index e8fed290734..9ba8c949fd1 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{2013-08-09.09} | 6 | \def\texinfoversion{2013-08-20.10} |
| 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, |
| @@ -281,9 +281,9 @@ | |||
| 281 | \toks6=\expandafter{\prevsectiondefs}% | 281 | \toks6=\expandafter{\prevsectiondefs}% |
| 282 | \toks8=\expandafter{\lastcolordefs}% | 282 | \toks8=\expandafter{\lastcolordefs}% |
| 283 | \mark{% | 283 | \mark{% |
| 284 | \the\toks0 \the\toks2 | 284 | \the\toks0 \the\toks2 % 0: top marks (\last...) |
| 285 | \noexpand\or \the\toks4 \the\toks6 | 285 | \noexpand\or \the\toks4 \the\toks6 % 1: bottom marks (default, \prev...) |
| 286 | \noexpand\else \the\toks8 | 286 | \noexpand\else \the\toks8 % 2: color marks |
| 287 | }% | 287 | }% |
| 288 | } | 288 | } |
| 289 | % \topmark doesn't work for the very first chapter (after the title | 289 | % \topmark doesn't work for the very first chapter (after the title |
| @@ -5909,7 +5909,7 @@ end | |||
| 5909 | % | 5909 | % |
| 5910 | % Now the second mark, after the heading break. No break points | 5910 | % Now the second mark, after the heading break. No break points |
| 5911 | % between here and the heading. | 5911 | % between here and the heading. |
| 5912 | \let\prevsectiondefs=\lastsectiondefs | 5912 | \global\let\prevsectiondefs=\lastsectiondefs |
| 5913 | \domark | 5913 | \domark |
| 5914 | % | 5914 | % |
| 5915 | % Only insert the space after the number if we have a section number. | 5915 | % Only insert the space after the number if we have a section number. |
diff --git a/m4/sha256.m4 b/m4/sha256.m4 index 7eede32fad6..cbbd17a6444 100644 --- a/m4/sha256.m4 +++ b/m4/sha256.m4 | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | # sha256.m4 serial 6 | 1 | # sha256.m4 serial 7 |
| 2 | dnl Copyright (C) 2005, 2008-2013 Free Software Foundation, Inc. | 2 | dnl Copyright (C) 2005, 2008-2013 Free Software Foundation, Inc. |
| 3 | dnl This file is free software; the Free Software Foundation | 3 | dnl This file is free software; the Free Software Foundation |
| 4 | dnl gives unlimited permission to copy and/or distribute it, | 4 | dnl gives unlimited permission to copy and/or distribute it, |
| @@ -8,4 +8,5 @@ AC_DEFUN([gl_SHA256], | |||
| 8 | [ | 8 | [ |
| 9 | dnl Prerequisites of lib/sha256.c. | 9 | dnl Prerequisites of lib/sha256.c. |
| 10 | AC_REQUIRE([gl_BIGENDIAN]) | 10 | AC_REQUIRE([gl_BIGENDIAN]) |
| 11 | : | ||
| 11 | ]) | 12 | ]) |
diff --git a/m4/sha512.m4 b/m4/sha512.m4 index 46c0895890c..f4a6bf13baa 100644 --- a/m4/sha512.m4 +++ b/m4/sha512.m4 | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | # sha512.m4 serial 7 | 1 | # sha512.m4 serial 8 |
| 2 | dnl Copyright (C) 2005-2006, 2008-2013 Free Software Foundation, Inc. | 2 | dnl Copyright (C) 2005-2006, 2008-2013 Free Software Foundation, Inc. |
| 3 | dnl This file is free software; the Free Software Foundation | 3 | dnl This file is free software; the Free Software Foundation |
| 4 | dnl gives unlimited permission to copy and/or distribute it, | 4 | dnl gives unlimited permission to copy and/or distribute it, |
| @@ -8,4 +8,5 @@ AC_DEFUN([gl_SHA512], | |||
| 8 | [ | 8 | [ |
| 9 | dnl Prerequisites of lib/sha512.c. | 9 | dnl Prerequisites of lib/sha512.c. |
| 10 | AC_REQUIRE([gl_BIGENDIAN]) | 10 | AC_REQUIRE([gl_BIGENDIAN]) |
| 11 | : | ||
| 11 | ]) | 12 | ]) |