diff options
| author | Glenn Morris | 2013-01-02 18:37:57 -0800 |
|---|---|---|
| committer | Glenn Morris | 2013-01-02 18:37:57 -0800 |
| commit | 0a8bf3afca415fec94742cf830622b22f186062c (patch) | |
| tree | 7ca943a0622ea184e1a9dc97d31509d063e138b5 | |
| parent | 2036b4b8e075479ea5333689e299183b9c2f3ebb (diff) | |
| parent | 75e78d1e904bde7eae13b78202f99081543701dc (diff) | |
| download | emacs-0a8bf3afca415fec94742cf830622b22f186062c.tar.gz emacs-0a8bf3afca415fec94742cf830622b22f186062c.zip | |
Merge from emacs-24; up to 2012-12-06T07:33:20Z!rgm@gnu.org
47 files changed, 64 insertions, 41 deletions
diff --git a/configure.ac b/configure.ac index 31f80cc08ca..4a43fcf8fcd 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -4406,7 +4406,7 @@ AC_SUBST(WINDOW_SYSTEM_OBJ) | |||
| 4406 | 4406 | ||
| 4407 | AH_TOP([/* GNU Emacs site configuration template file. | 4407 | AH_TOP([/* GNU Emacs site configuration template file. |
| 4408 | 4408 | ||
| 4409 | Copyright (C) 1988, 1993-1994, 1999-2002, 2004-2012 | 4409 | Copyright (C) 1988, 1993-1994, 1999-2002, 2004-2013 |
| 4410 | Free Software Foundation, Inc. | 4410 | Free Software Foundation, Inc. |
| 4411 | 4411 | ||
| 4412 | This file is part of GNU Emacs. | 4412 | This file is part of GNU Emacs. |
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index b837525fb42..4815ac2a482 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2013-01-03 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * processes.texi (System Processes): | ||
| 4 | * syntax.texi (Syntax Table Functions): Tweak some line breaks. | ||
| 5 | |||
| 6 | * searching.texi (Replacing Match): Fix xref. | ||
| 7 | |||
| 8 | * elisp.texi (DATE): Bump to Jan 2013. | ||
| 9 | |||
| 1 | 2013-01-02 Glenn Morris <rgm@gnu.org> | 10 | 2013-01-02 Glenn Morris <rgm@gnu.org> |
| 2 | 11 | ||
| 3 | * customize.texi (Common Keywords, Type Keywords): | 12 | * customize.texi (Common Keywords, Type Keywords): |
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi index 354591c1915..127b22086d0 100644 --- a/doc/lispref/elisp.texi +++ b/doc/lispref/elisp.texi | |||
| @@ -56,7 +56,7 @@ | |||
| 56 | @c (See comments for EDITION in emacs.texi) | 56 | @c (See comments for EDITION in emacs.texi) |
| 57 | @set VERSION 3.1 | 57 | @set VERSION 3.1 |
| 58 | @include emacsver.texi | 58 | @include emacsver.texi |
| 59 | @set DATE May 2012 | 59 | @set DATE January 2013 |
| 60 | 60 | ||
| 61 | @c in general, keep the following line commented out, unless doing a | 61 | @c in general, keep the following line commented out, unless doing a |
| 62 | @c copy of this manual that will be published. The manual should go | 62 | @c copy of this manual that will be published. The manual should go |
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index a5a0ec62beb..50710e23234 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi | |||
| @@ -1804,12 +1804,12 @@ The number of threads in the process. | |||
| 1804 | 1804 | ||
| 1805 | @item start | 1805 | @item start |
| 1806 | The time when the process was started, in the same | 1806 | The time when the process was started, in the same |
| 1807 | @w{@code{(@var{high} @var{low} @var{microsec} @var{picosec})}} format used by | 1807 | @code{(@var{high} @var{low} @var{microsec} @var{picosec})} format used by |
| 1808 | @code{current-time} and by @code{file-attributes}. | 1808 | @code{file-attributes} and @code{current-time}. |
| 1809 | 1809 | ||
| 1810 | @item etime | 1810 | @item etime |
| 1811 | The time elapsed since the process started, in the @w{@code{(@var{high} | 1811 | The time elapsed since the process started, in the format @code{(@var{high} |
| 1812 | @var{low} @var{microsec} @var{picosec})}} format. | 1812 | @var{low} @var{microsec} @var{picosec})}. |
| 1813 | 1813 | ||
| 1814 | @item vsize | 1814 | @item vsize |
| 1815 | The virtual memory size of the process, measured in kilobytes. | 1815 | The virtual memory size of the process, measured in kilobytes. |
diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi index 1573cceaed6..87d4051d6f0 100644 --- a/doc/lispref/searching.texi +++ b/doc/lispref/searching.texi | |||
| @@ -1325,7 +1325,7 @@ This stands for a single @samp{\} in the replacement text. | |||
| 1325 | 1325 | ||
| 1326 | @item @samp{\?} | 1326 | @item @samp{\?} |
| 1327 | This stands for itself (for compatibility with @code{replace-regexp} | 1327 | This stands for itself (for compatibility with @code{replace-regexp} |
| 1328 | and related commands; @pxref{Regexp Replacement,,, emacs, The GNU | 1328 | and related commands; @pxref{Regexp Replace,,, emacs, The GNU |
| 1329 | Emacs Manual}). | 1329 | Emacs Manual}). |
| 1330 | @end table | 1330 | @end table |
| 1331 | 1331 | ||
diff --git a/doc/lispref/syntax.texi b/doc/lispref/syntax.texi index a07f45c100b..dfa121103bc 100644 --- a/doc/lispref/syntax.texi +++ b/doc/lispref/syntax.texi | |||
| @@ -478,17 +478,17 @@ it easier to see the character returned by @code{char-syntax}.) | |||
| 478 | @end group | 478 | @end group |
| 479 | 479 | ||
| 480 | @group | 480 | @group |
| 481 | ;; Forward slash characters have punctuation syntax. Note that this | 481 | ;; Forward slash characters have punctuation syntax. |
| 482 | ;; @code{char-syntax} call does not reveal that it is also part of | 482 | ;; Note that this @code{char-syntax} call does not reveal |
| 483 | ;; comment-start and -end sequences. | 483 | ;; that it is also part of comment-start and -end sequences. |
| 484 | (string (char-syntax ?/)) | 484 | (string (char-syntax ?/)) |
| 485 | @result{} "." | 485 | @result{} "." |
| 486 | @end group | 486 | @end group |
| 487 | 487 | ||
| 488 | @group | 488 | @group |
| 489 | ;; Open parenthesis characters have open parenthesis syntax. Note | 489 | ;; Open parenthesis characters have open parenthesis syntax. |
| 490 | ;; that this @code{char-syntax} call does not reveal that it has a | 490 | ;; Note that this @code{char-syntax} call does not reveal that |
| 491 | ;; matching character, @samp{)}. | 491 | ;; it has a matching character, @samp{)}. |
| 492 | (string (char-syntax ?\()) | 492 | (string (char-syntax ?\()) |
| 493 | @result{} "(" | 493 | @result{} "(" |
| 494 | @end group | 494 | @end group |
diff --git a/doc/man/ebrowse.1 b/doc/man/ebrowse.1 index 84f1ef1dd9b..89506db98ef 100644 --- a/doc/man/ebrowse.1 +++ b/doc/man/ebrowse.1 | |||
| @@ -85,7 +85,7 @@ was written by Gerd Moellmann. | |||
| 85 | Copyright | 85 | Copyright |
| 86 | .if t \(co | 86 | .if t \(co |
| 87 | .if n (C) | 87 | .if n (C) |
| 88 | 2008-2012 Free Software Foundation, Inc. | 88 | 2008-2013 Free Software Foundation, Inc. |
| 89 | .PP | 89 | .PP |
| 90 | Permission is granted to make and distribute verbatim copies of this | 90 | Permission is granted to make and distribute verbatim copies of this |
| 91 | document provided the copyright notice and this permission notice are | 91 | document provided the copyright notice and this permission notice are |
diff --git a/doc/man/emacs.1 b/doc/man/emacs.1 index 46bda023b5a..3d0c5107adc 100644 --- a/doc/man/emacs.1 +++ b/doc/man/emacs.1 | |||
| @@ -642,7 +642,7 @@ For detailed credits and acknowledgments, see the GNU Emacs manual. | |||
| 642 | Copyright | 642 | Copyright |
| 643 | .if t \(co | 643 | .if t \(co |
| 644 | .if n (C) | 644 | .if n (C) |
| 645 | 1995, 1999-2012 Free Software Foundation, Inc. | 645 | 1995, 1999-2013 Free Software Foundation, Inc. |
| 646 | .PP | 646 | .PP |
| 647 | Permission is granted to make and distribute verbatim copies of this | 647 | Permission is granted to make and distribute verbatim copies of this |
| 648 | document provided the copyright notice and this permission notice are | 648 | document provided the copyright notice and this permission notice are |
diff --git a/doc/man/etags.1 b/doc/man/etags.1 index 3f22364a194..94fe2af1a8a 100644 --- a/doc/man/etags.1 +++ b/doc/man/etags.1 | |||
| @@ -268,7 +268,7 @@ Stallman. | |||
| 268 | Copyright | 268 | Copyright |
| 269 | .if t \(co | 269 | .if t \(co |
| 270 | .if n (C) | 270 | .if n (C) |
| 271 | 1992, 1999, 2001-2012 Free Software Foundation, Inc. | 271 | 1992, 1999, 2001-2013 Free Software Foundation, Inc. |
| 272 | .PP | 272 | .PP |
| 273 | Permission is granted to make and distribute verbatim copies of this | 273 | Permission is granted to make and distribute verbatim copies of this |
| 274 | document provided the copyright notice and this permission notice are | 274 | document provided the copyright notice and this permission notice are |
diff --git a/doc/man/grep-changelog.1 b/doc/man/grep-changelog.1 index 397e6493343..ef4b2900988 100644 --- a/doc/man/grep-changelog.1 +++ b/doc/man/grep-changelog.1 | |||
| @@ -62,7 +62,7 @@ Display basic usage information. | |||
| 62 | Copyright | 62 | Copyright |
| 63 | .if t \(co | 63 | .if t \(co |
| 64 | .if n (C) | 64 | .if n (C) |
| 65 | 2008-2012 Free Software Foundation, Inc. | 65 | 2008-2013 Free Software Foundation, Inc. |
| 66 | .PP | 66 | .PP |
| 67 | Permission is granted to make and distribute verbatim copies of this | 67 | Permission is granted to make and distribute verbatim copies of this |
| 68 | document provided the copyright notice and this permission notice are | 68 | document provided the copyright notice and this permission notice are |
diff --git a/doc/misc/wisent.texi b/doc/misc/wisent.texi index bd12fe5ab8a..d8557b84a4f 100644 --- a/doc/misc/wisent.texi +++ b/doc/misc/wisent.texi | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | @c %**end of header | 23 | @c %**end of header |
| 24 | 24 | ||
| 25 | @copying | 25 | @copying |
| 26 | Copyright @copyright{} 1988--1993, 1995, 1998--2004, 2007, 2012 | 26 | Copyright @copyright{} 1988--1993, 1995, 1998--2004, 2007, 2012--2013 |
| 27 | Free Software Foundation, Inc. | 27 | Free Software Foundation, Inc. |
| 28 | 28 | ||
| 29 | @c Since we are both GNU manuals, we do not need to ack each other here. | 29 | @c Since we are both GNU manuals, we do not need to ack each other here. |
diff --git a/etc/refcards/calccard.pdf b/etc/refcards/calccard.pdf index 5e97c2a9d92..8d39aa013a0 100644 --- a/etc/refcards/calccard.pdf +++ b/etc/refcards/calccard.pdf | |||
| Binary files differ | |||
diff --git a/etc/refcards/cs-dired-ref.pdf b/etc/refcards/cs-dired-ref.pdf index 1b5a8612ed9..0e6232a800d 100644 --- a/etc/refcards/cs-dired-ref.pdf +++ b/etc/refcards/cs-dired-ref.pdf | |||
| Binary files differ | |||
diff --git a/etc/refcards/cs-refcard.pdf b/etc/refcards/cs-refcard.pdf index 963adcc7bb9..a032a7ce407 100644 --- a/etc/refcards/cs-refcard.pdf +++ b/etc/refcards/cs-refcard.pdf | |||
| Binary files differ | |||
diff --git a/etc/refcards/de-refcard.pdf b/etc/refcards/de-refcard.pdf index bccc60993f6..84c0f4c121a 100644 --- a/etc/refcards/de-refcard.pdf +++ b/etc/refcards/de-refcard.pdf | |||
| Binary files differ | |||
diff --git a/etc/refcards/dired-ref.pdf b/etc/refcards/dired-ref.pdf index 0f579670808..b80daa90638 100644 --- a/etc/refcards/dired-ref.pdf +++ b/etc/refcards/dired-ref.pdf | |||
| Binary files differ | |||
diff --git a/etc/refcards/emacsver.tex b/etc/refcards/emacsver.tex index 620ee8ef9e0..72a7d96d1ff 100644 --- a/etc/refcards/emacsver.tex +++ b/etc/refcards/emacsver.tex | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | %% This file is not generated by configure, because then the provided | 1 | %% This file is not generated by configure, because then the provided |
| 2 | %% pdf files would always appear out-of-date. | 2 | %% pdf files would always appear out-of-date. |
| 3 | \def\versionemacs{24} % major version of emacs | 3 | \def\versionemacs{24} % major version of emacs |
| 4 | \def\year{2012} % latest copyright year | 4 | \def\year{2013} % latest copyright year |
diff --git a/etc/refcards/fr-dired-ref.pdf b/etc/refcards/fr-dired-ref.pdf index 32f12ab2088..77b36c3f2a7 100644 --- a/etc/refcards/fr-dired-ref.pdf +++ b/etc/refcards/fr-dired-ref.pdf | |||
| Binary files differ | |||
diff --git a/etc/refcards/fr-refcard.pdf b/etc/refcards/fr-refcard.pdf index 020ffbdeea0..5fdf2998e4b 100644 --- a/etc/refcards/fr-refcard.pdf +++ b/etc/refcards/fr-refcard.pdf | |||
| Binary files differ | |||
diff --git a/etc/refcards/gnus-booklet.pdf b/etc/refcards/gnus-booklet.pdf index 6c8fa376234..6cc54baaead 100644 --- a/etc/refcards/gnus-booklet.pdf +++ b/etc/refcards/gnus-booklet.pdf | |||
| Binary files differ | |||
diff --git a/etc/refcards/gnus-refcard.pdf b/etc/refcards/gnus-refcard.pdf index c64ed30f39f..7a1c5b3bcab 100644 --- a/etc/refcards/gnus-refcard.pdf +++ b/etc/refcards/gnus-refcard.pdf | |||
| Binary files differ | |||
diff --git a/etc/refcards/orgcard.pdf b/etc/refcards/orgcard.pdf index 720f08d9ded..ccc02ae7968 100644 --- a/etc/refcards/orgcard.pdf +++ b/etc/refcards/orgcard.pdf | |||
| Binary files differ | |||
diff --git a/etc/refcards/pl-refcard.pdf b/etc/refcards/pl-refcard.pdf index ddeeca97daa..b832990fb1c 100644 --- a/etc/refcards/pl-refcard.pdf +++ b/etc/refcards/pl-refcard.pdf | |||
| Binary files differ | |||
diff --git a/etc/refcards/pt-br-refcard.pdf b/etc/refcards/pt-br-refcard.pdf index dc61712a998..200425f27d7 100644 --- a/etc/refcards/pt-br-refcard.pdf +++ b/etc/refcards/pt-br-refcard.pdf | |||
| Binary files differ | |||
diff --git a/etc/refcards/refcard.pdf b/etc/refcards/refcard.pdf index f2a720d656b..1d3b630bfc5 100644 --- a/etc/refcards/refcard.pdf +++ b/etc/refcards/refcard.pdf | |||
| Binary files differ | |||
diff --git a/etc/refcards/ru-refcard.pdf b/etc/refcards/ru-refcard.pdf index 2289acff755..f415fd5574d 100644 --- a/etc/refcards/ru-refcard.pdf +++ b/etc/refcards/ru-refcard.pdf | |||
| Binary files differ | |||
diff --git a/etc/refcards/ru-refcard.tex b/etc/refcards/ru-refcard.tex index 765b8085147..c44110352cb 100644 --- a/etc/refcards/ru-refcard.tex +++ b/etc/refcards/ru-refcard.tex | |||
| @@ -22,7 +22,7 @@ | |||
| 22 | \setlength{\ColThreeWidth}{25mm} | 22 | \setlength{\ColThreeWidth}{25mm} |
| 23 | 23 | ||
| 24 | \newcommand{\versionemacs}[0]{24} % version of Emacs this is for | 24 | \newcommand{\versionemacs}[0]{24} % version of Emacs this is for |
| 25 | \newcommand{\cyear}[0]{2012} % copyright year | 25 | \newcommand{\cyear}[0]{2013} % copyright year |
| 26 | 26 | ||
| 27 | \newcommand\shortcopyrightnotice[0]{\vskip 1ex plus 2 fill | 27 | \newcommand\shortcopyrightnotice[0]{\vskip 1ex plus 2 fill |
| 28 | \centerline{\footnotesize \copyright\ \cyear\ Free Software Foundation, Inc. | 28 | \centerline{\footnotesize \copyright\ \cyear\ Free Software Foundation, Inc. |
diff --git a/etc/refcards/sk-dired-ref.pdf b/etc/refcards/sk-dired-ref.pdf index 2cd9ef12fd9..f3cb4f64368 100644 --- a/etc/refcards/sk-dired-ref.pdf +++ b/etc/refcards/sk-dired-ref.pdf | |||
| Binary files differ | |||
diff --git a/etc/refcards/sk-refcard.pdf b/etc/refcards/sk-refcard.pdf index e02c7db3d4c..d4a85a3d4b9 100644 --- a/etc/refcards/sk-refcard.pdf +++ b/etc/refcards/sk-refcard.pdf | |||
| Binary files differ | |||
diff --git a/lib-src/rcs2log b/lib-src/rcs2log index 724bd4d696c..4f2bb3308fc 100755 --- a/lib-src/rcs2log +++ b/lib-src/rcs2log | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | 20 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 21 | 21 | ||
| 22 | 22 | ||
| 23 | Copyright='Copyright (C) 2012 Free Software Foundation, Inc. | 23 | Copyright='Copyright (C) 2013 Free Software Foundation, Inc. |
| 24 | This program comes with NO WARRANTY, to the extent permitted by law. | 24 | This program comes with NO WARRANTY, to the extent permitted by law. |
| 25 | You may redistribute copies of this program | 25 | You may redistribute copies of this program |
| 26 | under the terms of the GNU General Public License. | 26 | under the terms of the GNU General Public License. |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 081792c9719..0d34da2c049 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2013-01-03 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * subr.el (eval-after-load): Don't purecopy the form, so that it | ||
| 4 | can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331) | ||
| 5 | |||
| 6 | * emacs-lisp/byte-run.el (defun): Place cl declarations | ||
| 7 | after any interactive spec. (Bug#13265) | ||
| 8 | |||
| 1 | 2013-01-02 Andreas Schwab <schwab@linux-m68k.org> | 9 | 2013-01-02 Andreas Schwab <schwab@linux-m68k.org> |
| 2 | 10 | ||
| 3 | * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as | 11 | * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as |
diff --git a/lisp/calc/README b/lisp/calc/README index bae9e7ab177..c44ffe5aef0 100644 --- a/lisp/calc/README +++ b/lisp/calc/README | |||
| @@ -5,7 +5,7 @@ See the end of the file for license conditions. | |||
| 5 | This directory contains Calc, an advanced desk calculator for GNU | 5 | This directory contains Calc, an advanced desk calculator for GNU |
| 6 | Emacs. | 6 | Emacs. |
| 7 | 7 | ||
| 8 | "Calc" Copyright (C) 1990-1993, 2001-2012 Free Software Foundation, Inc. | 8 | "Calc" Copyright (C) 1990-1993, 2001-2013 Free Software Foundation, Inc. |
| 9 | 9 | ||
| 10 | Written by: | 10 | Written by: |
| 11 | Dave Gillespie | 11 | Dave Gillespie |
diff --git a/lisp/cedet/semantic/imenu.el b/lisp/cedet/semantic/imenu.el index 22a23e526a2..370f651b93d 100644 --- a/lisp/cedet/semantic/imenu.el +++ b/lisp/cedet/semantic/imenu.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; semantic/imenu.el --- Use Semantic as an imenu tag generator | 1 | ;;; semantic/imenu.el --- Use Semantic as an imenu tag generator |
| 2 | 2 | ||
| 3 | ;;; Copyright (C) 2000-2005, 2007-2008, 2010-2012 | 3 | ;;; Copyright (C) 2000-2005, 2007-2008, 2010-2013 |
| 4 | ;; Free Software Foundation, Inc. | 4 | ;; Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 6 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el index 3168ddb16e5..b44ec68e2bf 100644 --- a/lisp/emacs-lisp/byte-run.el +++ b/lisp/emacs-lisp/byte-run.el | |||
| @@ -199,7 +199,13 @@ The return value is undefined. | |||
| 199 | (memq (car x) ;C.f. cl-do-proclaim. | 199 | (memq (car x) ;C.f. cl-do-proclaim. |
| 200 | '(special inline notinline optimize warn))) | 200 | '(special inline notinline optimize warn))) |
| 201 | (push (list 'declare x) | 201 | (push (list 'declare x) |
| 202 | (if (stringp docstring) (cdr body) body)) | 202 | (if (stringp docstring) |
| 203 | (if (eq (car-safe (cadr body)) 'interactive) | ||
| 204 | (cddr body) | ||
| 205 | (cdr body)) | ||
| 206 | (if (eq (car-safe (car body)) 'interactive) | ||
| 207 | (cdr body) | ||
| 208 | body))) | ||
| 203 | nil) | 209 | nil) |
| 204 | (t (message "Warning: Unknown defun property `%S' in %S" | 210 | (t (message "Warning: Unknown defun property `%S' in %S" |
| 205 | (car x) name))))) | 211 | (car x) name))))) |
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index 58ad7a6661f..5bbf1708654 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el | |||
| @@ -805,7 +805,7 @@ on the remote host.") | |||
| 805 | (defconst tramp-perl-encode | 805 | (defconst tramp-perl-encode |
| 806 | "%s -e ' | 806 | "%s -e ' |
| 807 | # This script contributed by Juanma Barranquero <lektu@terra.es>. | 807 | # This script contributed by Juanma Barranquero <lektu@terra.es>. |
| 808 | # Copyright (C) 2002-2012 Free Software Foundation, Inc. | 808 | # Copyright (C) 2002-2013 Free Software Foundation, Inc. |
| 809 | use strict; | 809 | use strict; |
| 810 | 810 | ||
| 811 | my %%trans = do { | 811 | my %%trans = do { |
| @@ -843,7 +843,7 @@ This string is passed to `format', so percent characters need to be doubled.") | |||
| 843 | (defconst tramp-perl-decode | 843 | (defconst tramp-perl-decode |
| 844 | "%s -e ' | 844 | "%s -e ' |
| 845 | # This script contributed by Juanma Barranquero <lektu@terra.es>. | 845 | # This script contributed by Juanma Barranquero <lektu@terra.es>. |
| 846 | # Copyright (C) 2002-2012 Free Software Foundation, Inc. | 846 | # Copyright (C) 2002-2013 Free Software Foundation, Inc. |
| 847 | use strict; | 847 | use strict; |
| 848 | 848 | ||
| 849 | my %%trans = do { | 849 | my %%trans = do { |
diff --git a/lisp/org/org-html.el b/lisp/org/org-html.el index d7c86b08a9e..91df2ebcc4e 100644 --- a/lisp/org/org-html.el +++ b/lisp/org/org-html.el | |||
| @@ -104,7 +104,7 @@ not be modified." | |||
| 104 | @licstart The following is the entire license notice for the | 104 | @licstart The following is the entire license notice for the |
| 105 | JavaScript code in this tag. | 105 | JavaScript code in this tag. |
| 106 | 106 | ||
| 107 | Copyright (C) 2012 Free Software Foundation, Inc. | 107 | Copyright (C) 2012-2013 Free Software Foundation, Inc. |
| 108 | 108 | ||
| 109 | The JavaScript code in this tag is free software: you can | 109 | The JavaScript code in this tag is free software: you can |
| 110 | redistribute it and/or modify it under the terms of the GNU | 110 | redistribute it and/or modify it under the terms of the GNU |
| @@ -351,7 +351,7 @@ You can also customize this for each buffer, using something like | |||
| 351 | @licstart The following is the entire license notice for the | 351 | @licstart The following is the entire license notice for the |
| 352 | JavaScript code below. | 352 | JavaScript code below. |
| 353 | 353 | ||
| 354 | Copyright (C) 2012 Free Software Foundation, Inc. | 354 | Copyright (C) 2012-2013 Free Software Foundation, Inc. |
| 355 | 355 | ||
| 356 | The JavaScript code below is free software: you can | 356 | The JavaScript code below is free software: you can |
| 357 | redistribute it and/or modify it under the terms of the GNU | 357 | redistribute it and/or modify it under the terms of the GNU |
diff --git a/lisp/org/org-jsinfo.el b/lisp/org/org-jsinfo.el index 037afe843af..9a4046fff8b 100644 --- a/lisp/org/org-jsinfo.el +++ b/lisp/org/org-jsinfo.el | |||
| @@ -141,7 +141,7 @@ means to use the maximum value consistent with other options." | |||
| 141 | @licstart The following is the entire license notice for the | 141 | @licstart The following is the entire license notice for the |
| 142 | JavaScript code in this tag. | 142 | JavaScript code in this tag. |
| 143 | 143 | ||
| 144 | Copyright (C) 2012 Free Software Foundation, Inc. | 144 | Copyright (C) 2012-2013 Free Software Foundation, Inc. |
| 145 | 145 | ||
| 146 | The JavaScript code in this tag is free software: you can | 146 | The JavaScript code in this tag is free software: you can |
| 147 | redistribute it and/or modify it under the terms of the GNU | 147 | redistribute it and/or modify it under the terms of the GNU |
diff --git a/lisp/subr.el b/lisp/subr.el index 3e842ffb8c6..7ca0169abdb 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -1867,7 +1867,7 @@ This function makes or adds to an entry on `after-load-alist'." | |||
| 1867 | ,form))) | 1867 | ,form))) |
| 1868 | ;; Add FORM to the element unless it's already there. | 1868 | ;; Add FORM to the element unless it's already there. |
| 1869 | (unless (member form (cdr elt)) | 1869 | (unless (member form (cdr elt)) |
| 1870 | (nconc elt (purecopy (list form))))))) | 1870 | (nconc elt (list form)))))) |
| 1871 | 1871 | ||
| 1872 | (defvar after-load-functions nil | 1872 | (defvar after-load-functions nil |
| 1873 | "Special hook run after loading a file. | 1873 | "Special hook run after loading a file. |
diff --git a/msdos/README b/msdos/README index ba97312130a..9b5b71495cf 100644 --- a/msdos/README +++ b/msdos/README | |||
| @@ -10,7 +10,7 @@ The files emacs.ico and emacs.pif are for using the DJGPP version on | |||
| 10 | Windows 3.X. Since these are binary files, their copyright notice is | 10 | Windows 3.X. Since these are binary files, their copyright notice is |
| 11 | reproduced here: | 11 | reproduced here: |
| 12 | 12 | ||
| 13 | # Copyright (C) 1993, 2002-2012 Free Software Foundation, Inc. | 13 | # Copyright (C) 1993, 2002-2013 Free Software Foundation, Inc. |
| 14 | # | 14 | # |
| 15 | # This file is part of GNU Emacs. | 15 | # This file is part of GNU Emacs. |
| 16 | # | 16 | # |
diff --git a/msdos/depfiles.bat b/msdos/depfiles.bat index 049f1c3602c..df71fc22179 100644 --- a/msdos/depfiles.bat +++ b/msdos/depfiles.bat | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | @echo off | 1 | @echo off |
| 2 | rem ---------------------------------------------------------------------- | 2 | rem ---------------------------------------------------------------------- |
| 3 | rem Auxiliary script for MSDOS, run by ../config.bat | 3 | rem Auxiliary script for MSDOS, run by ../config.bat |
| 4 | rem Copyright (C) 2011-2012 Free Software Foundation, Inc. | 4 | rem Copyright (C) 2011-2013 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | rem This file is part of GNU Emacs. | 6 | rem This file is part of GNU Emacs. |
| 7 | 7 | ||
diff --git a/msdos/sed2v2.inp b/msdos/sed2v2.inp index 607ff4d7e8b..bde8648b41e 100644 --- a/msdos/sed2v2.inp +++ b/msdos/sed2v2.inp | |||
| @@ -31,7 +31,7 @@ | |||
| 31 | #ifndef MSDOS\ | 31 | #ifndef MSDOS\ |
| 32 | #define MSDOS\ | 32 | #define MSDOS\ |
| 33 | #endif | 33 | #endif |
| 34 | /^#undef COPYRIGHT *$/s/^.*$/#define COPYRIGHT "Copyright (C) 2012 Free Software Foundation, Inc."/ | 34 | /^#undef COPYRIGHT *$/s/^.*$/#define COPYRIGHT "Copyright (C) 2013 Free Software Foundation, Inc."/ |
| 35 | /^#undef DIRECTORY_SEP *$/s!^.*$!#define DIRECTORY_SEP '/'! | 35 | /^#undef DIRECTORY_SEP *$/s!^.*$!#define DIRECTORY_SEP '/'! |
| 36 | /^#undef DOS_NT *$/s/^.*$/#define DOS_NT/ | 36 | /^#undef DOS_NT *$/s/^.*$/#define DOS_NT/ |
| 37 | /^#undef FLOAT_CHECK_DOMAIN *$/s/^.*$/#define FLOAT_CHECK_DOMAIN/ | 37 | /^#undef FLOAT_CHECK_DOMAIN *$/s/^.*$/#define FLOAT_CHECK_DOMAIN/ |
diff --git a/nt/config.nt b/nt/config.nt index f425f6a98ea..24bf6814829 100644 --- a/nt/config.nt +++ b/nt/config.nt | |||
| @@ -78,7 +78,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 78 | #undef CLASH_DETECTION | 78 | #undef CLASH_DETECTION |
| 79 | 79 | ||
| 80 | /* Short copyright string for this version of Emacs. */ | 80 | /* Short copyright string for this version of Emacs. */ |
| 81 | #define COPYRIGHT "Copyright (C) 2012 Free Software Foundation, Inc." | 81 | #define COPYRIGHT "Copyright (C) 2013 Free Software Foundation, Inc." |
| 82 | 82 | ||
| 83 | /* Define to one of '_getb67', 'GETB67', 'getb67' for Cray-2 and Cray-YMP | 83 | /* Define to one of '_getb67', 'GETB67', 'getb67' for Cray-2 and Cray-YMP |
| 84 | systems. This function is required for 'alloca.c' support on those systems. | 84 | systems. This function is required for 'alloca.c' support on those systems. |
diff --git a/nt/configure.bat b/nt/configure.bat index 3118bb11e5d..f833da72269 100755 --- a/nt/configure.bat +++ b/nt/configure.bat | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | @echo off | 1 | @echo off |
| 2 | rem ---------------------------------------------------------------------- | 2 | rem ---------------------------------------------------------------------- |
| 3 | rem Configuration script for MS Windows operating systems | 3 | rem Configuration script for MS Windows operating systems |
| 4 | rem Copyright (C) 1999-2012 Free Software Foundation, Inc. | 4 | rem Copyright (C) 1999-2013 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | rem This file is part of GNU Emacs. | 6 | rem This file is part of GNU Emacs. |
| 7 | 7 | ||
diff --git a/nt/emacs.rc b/nt/emacs.rc index da4283b6fd1..d2703c45869 100644 --- a/nt/emacs.rc +++ b/nt/emacs.rc | |||
| @@ -31,7 +31,7 @@ BEGIN | |||
| 31 | VALUE "FileDescription", "GNU Emacs: The extensible self-documenting text editor\0" | 31 | VALUE "FileDescription", "GNU Emacs: The extensible self-documenting text editor\0" |
| 32 | VALUE "FileVersion", "24, 3, 50, 0\0" | 32 | VALUE "FileVersion", "24, 3, 50, 0\0" |
| 33 | VALUE "InternalName", "Emacs\0" | 33 | VALUE "InternalName", "Emacs\0" |
| 34 | VALUE "LegalCopyright", "Copyright (C) 2001-2012\0" | 34 | VALUE "LegalCopyright", "Copyright (C) 2001-2013\0" |
| 35 | VALUE "OriginalFilename", "emacs.exe" | 35 | VALUE "OriginalFilename", "emacs.exe" |
| 36 | VALUE "ProductName", "Emacs\0" | 36 | VALUE "ProductName", "Emacs\0" |
| 37 | VALUE "ProductVersion", "24, 3, 50, 0\0" | 37 | VALUE "ProductVersion", "24, 3, 50, 0\0" |
diff --git a/nt/emacsclient.rc b/nt/emacsclient.rc index 59dd7b09f8a..d303e3451d0 100644 --- a/nt/emacsclient.rc +++ b/nt/emacsclient.rc | |||
| @@ -25,7 +25,7 @@ BEGIN | |||
| 25 | VALUE "FileDescription", "GNU EmacsClient: Client for the extensible self-documenting text editor\0" | 25 | VALUE "FileDescription", "GNU EmacsClient: Client for the extensible self-documenting text editor\0" |
| 26 | VALUE "FileVersion", "24, 3, 50, 0\0" | 26 | VALUE "FileVersion", "24, 3, 50, 0\0" |
| 27 | VALUE "InternalName", "EmacsClient\0" | 27 | VALUE "InternalName", "EmacsClient\0" |
| 28 | VALUE "LegalCopyright", "Copyright (C) 2001-2012\0" | 28 | VALUE "LegalCopyright", "Copyright (C) 2001-2013\0" |
| 29 | VALUE "OriginalFilename", "emacsclientw.exe" | 29 | VALUE "OriginalFilename", "emacsclientw.exe" |
| 30 | VALUE "ProductName", "EmacsClient\0" | 30 | VALUE "ProductName", "EmacsClient\0" |
| 31 | VALUE "ProductVersion", "24, 3, 50, 0\0" | 31 | VALUE "ProductVersion", "24, 3, 50, 0\0" |
diff --git a/nt/icons/README b/nt/icons/README index 0254080400d..d77b81de9c2 100644 --- a/nt/icons/README +++ b/nt/icons/README | |||
| @@ -8,7 +8,7 @@ License: GNU General Public License version 3 or later | |||
| 8 | 8 | ||
| 9 | File: emacs22.ico | 9 | File: emacs22.ico |
| 10 | Author: Andrew Zhilin | 10 | Author: Andrew Zhilin |
| 11 | Copyright (C) 2005-2012 Free Software Foundation, Inc. | 11 | Copyright (C) 2005-2013 Free Software Foundation, Inc. |
| 12 | License: GNU General Public License version 3 or later (see COPYING) | 12 | License: GNU General Public License version 3 or later (see COPYING) |
| 13 | 13 | ||
| 14 | 14 | ||
| @@ -17,7 +17,7 @@ Files: gnu2a32.ico gnu2a32t.ico gnu2b48.ico gnu2b48t.ico | |||
| 17 | gnu5w32.ico gnu5w32t.ico gnu6w48.ico gnu6w48t.ico | 17 | gnu5w32.ico gnu5w32t.ico gnu6w48.ico gnu6w48t.ico |
| 18 | gnu7.ico gnu8.ico gnu9.ico | 18 | gnu7.ico gnu8.ico gnu9.ico |
| 19 | Author: Rob Davenport <rgd at bigfoot.com> | 19 | Author: Rob Davenport <rgd at bigfoot.com> |
| 20 | Copyright (C) 1999, 2001-2012 Free Software Foundation, Inc. | 20 | Copyright (C) 1999, 2001-2013 Free Software Foundation, Inc. |
| 21 | License: GNU General Public License version 3 or later (see COPYING) | 21 | License: GNU General Public License version 3 or later (see COPYING) |
| 22 | 22 | ||
| 23 | <http://users.adelphia.net/~rob.davenport/gnuicons.html> | 23 | <http://users.adelphia.net/~rob.davenport/gnuicons.html> |
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Random utility Lisp functions. | 1 | /* Random utility Lisp functions. |
| 2 | Copyright (C) 1985-1987, 1993-1995, 1997-2012 | 2 | |
| 3 | Free Software Foundation, Inc. | 3 | Copyright (C) 1985-1987, 1993-1995, 1997-2013 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| 6 | 6 | ||