------------------------------------------------------------ revno: 116395 committer: Glenn Morris branch nick: trunk timestamp: Mon 2014-02-10 00:36:27 -0800 message: * lisp/emacs-lisp/lisp-mnt.el: Comments. diff: === modified file 'lisp/emacs-lisp/lisp-mnt.el' --- lisp/emacs-lisp/lisp-mnt.el 2014-02-10 01:37:11 +0000 +++ lisp/emacs-lisp/lisp-mnt.el 2014-02-10 08:36:27 +0000 @@ -85,10 +85,9 @@ ;; at a different version of the file than the one they're accustomed to. This ;; may be an RCS or SCCS header. ;; -;; * Adapted-By line --- this is for FSF's internal use. The person named -;; in this field was the one responsible for installing and adapting the -;; package for the distribution. (This file doesn't have one because the -;; author *is* one of the maintainers.) +;; * Adapted-By line --- this was used historically when some files +;; were added to Emacs. The person named in this field installed and +;; (possibly adapted) the package in the Emacs distribution. ;; ;; * Keywords line --- used by the finder code for finding Emacs ;; Lisp code related to a topic. ------------------------------------------------------------ revno: 116394 fixes bug: http://debbugs.gnu.org/11534 committer: Lars Ingebrigtsen branch nick: trunk timestamp: Sun 2014-02-09 23:13:14 -0800 message: * dired.el (dired-get-marked-files): Doc fix. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-10 06:58:34 +0000 +++ lisp/ChangeLog 2014-02-10 07:13:14 +0000 @@ -1,5 +1,7 @@ 2014-02-10 Lars Ingebrigtsen + * dired.el (dired-get-marked-files): Doc fix (bug#11534). + * simple.el (choose-completion): Doc fix (bug#14160). * subr.el (event-start): Say what a nil EVENT value means. === modified file 'lisp/dired.el' --- lisp/dired.el 2014-02-10 01:34:22 +0000 +++ lisp/dired.el 2014-02-10 07:13:14 +0000 @@ -634,7 +634,7 @@ point instead of marked files. It usually comes from the prefix argument. If ARG is an integer, use the next ARG files. - Any other non-nil value means to use the current file instead. + Any other value means to use the current file instead. Optional third argument FILTER, if non-nil, is a function to select some of the files--those for which (funcall FILTER FILENAME) is non-nil. ------------------------------------------------------------ revno: 116393 fixes bug: http://debbugs.gnu.org/14160 committer: Lars Ingebrigtsen branch nick: trunk timestamp: Sun 2014-02-09 22:58:34 -0800 message: * simple.el (choose-completion): Doc fix. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-10 06:56:03 +0000 +++ lisp/ChangeLog 2014-02-10 06:58:34 +0000 @@ -1,5 +1,7 @@ 2014-02-10 Lars Ingebrigtsen + * simple.el (choose-completion): Doc fix (bug#14160). + * subr.el (event-start): Say what a nil EVENT value means. * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused === modified file 'lisp/simple.el' --- lisp/simple.el 2014-02-10 01:34:22 +0000 +++ lisp/simple.el 2014-02-10 06:58:34 +0000 @@ -6913,7 +6913,8 @@ (setq n (1+ n)))))) (defun choose-completion (&optional event) - "Choose the completion at point." + "Choose the completion at point. +If EVENT, use EVENTs position to determine the starting position." (interactive (list last-nonmenu-event)) ;; In case this is run via the mouse, give temporary modes such as ;; isearch a chance to turn off. ------------------------------------------------------------ revno: 116392 committer: Lars Ingebrigtsen branch nick: trunk timestamp: Sun 2014-02-09 22:56:03 -0800 message: * subr.el (event-start): Say what a nil EVENT value means. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-10 06:51:32 +0000 +++ lisp/ChangeLog 2014-02-10 06:56:03 +0000 @@ -1,5 +1,7 @@ 2014-02-10 Lars Ingebrigtsen + * subr.el (event-start): Say what a nil EVENT value means. + * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused (bug#14197). === modified file 'lisp/subr.el' --- lisp/subr.el 2014-02-10 01:34:22 +0000 +++ lisp/subr.el 2014-02-10 06:56:03 +0000 @@ -1019,7 +1019,8 @@ (defun event-start (event) "Return the starting position of EVENT. -EVENT should be a mouse click, drag, or key press event. +EVENT should be a mouse click, drag, or key press event. If +EVENT is nil, the value of `posn-at-point' is used instead. The following accessor functions are used to access the elements of the position: ------------------------------------------------------------ revno: 116391 fixes bug: http://debbugs.gnu.org/14197 committer: Lars Ingebrigtsen branch nick: trunk timestamp: Sun 2014-02-09 22:51:32 -0800 message: * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-10 06:44:49 +0000 +++ lisp/ChangeLog 2014-02-10 06:51:32 +0000 @@ -1,5 +1,8 @@ 2014-02-10 Lars Ingebrigtsen + * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused + (bug#14197). + * progmodes/grep.el (find-program): Doc fix (bug#14289). * files.el (confirm-kill-emacs): Clarify doc (bug#15455). === modified file 'lisp/kmacro.el' --- lisp/kmacro.el 2014-02-08 12:34:52 +0000 +++ lisp/kmacro.el 2014-02-10 06:51:32 +0000 @@ -483,7 +483,8 @@ (defun kmacro-cycle-ring-next (&optional _arg) "Move to next keyboard macro in keyboard macro ring. -Displays the selected macro in the echo area." +Displays the selected macro in the echo area. +The ARG parameter is unused." (interactive) (unless (kmacro-ring-empty-p) (kmacro-push-ring) @@ -502,7 +503,8 @@ (defun kmacro-cycle-ring-previous (&optional _arg) "Move to previous keyboard macro in keyboard macro ring. -Displays the selected macro in the echo area." +Displays the selected macro in the echo area. +The ARG parameter is unused." (interactive) (unless (kmacro-ring-empty-p) (let ((keys (kmacro-get-repeat-prefix)) @@ -529,7 +531,8 @@ (defun kmacro-delete-ring-head (&optional _arg) - "Delete current macro from keyboard macro ring." + "Delete current macro from keyboard macro ring. +The ARG parameter is unused." (interactive) (unless (kmacro-ring-empty-p t) (if (null kmacro-ring) @@ -793,7 +796,8 @@ a key with an existing command binding, you will be asked for confirmation whether to replace that binding. Note that the binding is made in the `global-map' keymap, so the macro binding -may be shaded by a local key binding." +may be shaded by a local key binding. +The ARG parameter is unused." (interactive "p") (if (or defining-kbd-macro executing-kbd-macro) (if defining-kbd-macro @@ -865,7 +869,8 @@ (defun kmacro-view-macro (&optional _arg) "Display the last keyboard macro. -If repeated, it shows previous elements in the macro ring." +If repeated, it shows previous elements in the macro ring. +The ARG parameter is unused." (interactive) (cond ((or (kmacro-ring-empty-p) ------------------------------------------------------------ revno: 116390 fixes bug: http://debbugs.gnu.org/14289 committer: Lars Ingebrigtsen branch nick: trunk timestamp: Sun 2014-02-09 22:44:49 -0800 message: * progmodes/grep.el (find-program): Doc fix. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-10 06:07:30 +0000 +++ lisp/ChangeLog 2014-02-10 06:44:49 +0000 @@ -1,5 +1,7 @@ 2014-02-10 Lars Ingebrigtsen + * progmodes/grep.el (find-program): Doc fix (bug#14289). + * files.el (confirm-kill-emacs): Clarify doc (bug#15455). * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832). === modified file 'lisp/progmodes/grep.el' --- lisp/progmodes/grep.el 2014-02-10 01:34:22 +0000 +++ lisp/progmodes/grep.el 2014-02-10 06:44:49 +0000 @@ -423,8 +423,9 @@ ;;;###autoload (defvar find-program (purecopy "find") - "The default find program for `grep-find-command'. -This variable's value takes effect when `grep-compute-defaults' is called.") + "The default find program. +This is used by commands like `grep-find-command', `find-dired' +and others.") ;;;###autoload (defvar xargs-program (purecopy "xargs") ------------------------------------------------------------ revno: 116389 fixes bug: http://debbugs.gnu.org/15455 committer: Lars Ingebrigtsen branch nick: trunk timestamp: Sun 2014-02-09 22:07:30 -0800 message: * files.el (confirm-kill-emacs): Clarify doc (bug#15455). diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-10 05:50:16 +0000 +++ lisp/ChangeLog 2014-02-10 06:07:30 +0000 @@ -1,5 +1,7 @@ 2014-02-10 Lars Ingebrigtsen + * files.el (confirm-kill-emacs): Clarify doc (bug#15455). + * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832). * files.el (confirm-kill-emacs): Allow specifying an arbitrary === modified file 'lisp/files.el' --- lisp/files.el 2014-02-10 04:26:10 +0000 +++ lisp/files.el 2014-02-10 06:07:30 +0000 @@ -6498,7 +6498,7 @@ (defcustom confirm-kill-emacs nil "How to ask for confirmation when leaving Emacs. If nil, the default, don't ask at all. If the value is non-nil, it should -be a predicate function such as `yes-or-no-p'." +be a predicate function; for example `yes-or-no-p'." :type '(choice (const :tag "Ask with yes-or-no-p" yes-or-no-p) (const :tag "Ask with y-or-n-p" y-or-n-p) (const :tag "Don't confirm" nil) ------------------------------------------------------------ revno: 116388 fixes bug: http://debbugs.gnu.org/15456 committer: Lars Ingebrigtsen branch nick: trunk timestamp: Sun 2014-02-09 22:04:39 -0800 message: (Fyes_or_no_p): Doc fix diff: === modified file 'src/ChangeLog' --- src/ChangeLog 2014-02-10 05:55:53 +0000 +++ src/ChangeLog 2014-02-10 06:04:39 +0000 @@ -2,6 +2,7 @@ * fns.c (Fmaphash): Say what `maphash' returns, since it may be unintuitive (bug#15824). + (Fyes_or_no_p): Doc fix (bug#15456). 2014-02-10 Dmitry Antipov === modified file 'src/fns.c' --- src/fns.c 2014-02-10 05:55:53 +0000 +++ src/fns.c 2014-02-10 06:04:39 +0000 @@ -2425,7 +2425,8 @@ /* Anything that calls this function must protect from GC! */ DEFUN ("yes-or-no-p", Fyes_or_no_p, Syes_or_no_p, 1, 1, 0, - doc: /* Ask user a yes-or-no question. Return t if answer is yes. + doc: /* Ask user a yes-or-no question. +Return t if answer is yes, and nil if the answer is no. PROMPT is the string to display to ask the question. It should end in a space; `yes-or-no-p' adds \"(yes or no) \" to it. ------------------------------------------------------------ revno: 116387 fixes bug: http://debbugs.gnu.org/15824 committer: Lars Ingebrigtsen branch nick: trunk timestamp: Sun 2014-02-09 21:55:53 -0800 message: * fns.c (Fmaphash): Say what `maphash' returns, since it may be unintuitive. diff: === modified file 'src/ChangeLog' --- src/ChangeLog 2014-02-10 05:41:42 +0000 +++ src/ChangeLog 2014-02-10 05:55:53 +0000 @@ -1,3 +1,8 @@ +2014-02-10 Lars Ingebrigtsen + + * fns.c (Fmaphash): Say what `maphash' returns, since it may be + unintuitive (bug#15824). + 2014-02-10 Dmitry Antipov * cmds.c (Fself_insert_command): Respect the width of EMACS_INT === modified file 'src/fns.c' --- src/fns.c 2014-01-03 06:47:27 +0000 +++ src/fns.c 2014-02-10 05:55:53 +0000 @@ -4508,7 +4508,8 @@ DEFUN ("maphash", Fmaphash, Smaphash, 2, 2, 0, doc: /* Call FUNCTION for all entries in hash table TABLE. -FUNCTION is called with two arguments, KEY and VALUE. */) +FUNCTION is called with two arguments, KEY and VALUE. +`maphash' always returns nil. */) (Lisp_Object function, Lisp_Object table) { struct Lisp_Hash_Table *h = check_hash_table (table); ------------------------------------------------------------ revno: 116386 fixes bug: http://debbugs.gnu.org/15832 committer: Lars Ingebrigtsen branch nick: trunk timestamp: Sun 2014-02-09 21:50:16 -0800 message: * emacs-lisp/lisp.el (up-list): Doc fix. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-10 04:26:10 +0000 +++ lisp/ChangeLog 2014-02-10 05:50:16 +0000 @@ -1,5 +1,7 @@ 2014-02-10 Lars Ingebrigtsen + * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832). + * files.el (confirm-kill-emacs): Allow specifying an arbitrary predicate function (bug#15455). === modified file 'lisp/emacs-lisp/lisp.el' --- lisp/emacs-lisp/lisp.el 2014-02-10 01:34:22 +0000 +++ lisp/emacs-lisp/lisp.el 2014-02-10 05:50:16 +0000 @@ -106,6 +106,8 @@ (defun forward-list (&optional arg) "Move forward across one balanced group of parentheses. +This command will also work on other parentheses-like expressions +defined by the current language mode. With ARG, do it that many times. Negative arg -N means move backward across N groups of parentheses. This command assumes point is not in a string or comment." @@ -115,6 +117,8 @@ (defun backward-list (&optional arg) "Move backward across one balanced group of parentheses. +This command will also work on other parentheses-like expressions +defined by the current language mode. With ARG, do it that many times. Negative arg -N means move forward across N groups of parentheses. This command assumes point is not in a string or comment." @@ -124,6 +128,8 @@ (defun down-list (&optional arg) "Move forward down one level of parentheses. +This command will also work on other parentheses-like expressions +defined by the current language mode. With ARG, do this that many times. A negative argument means move backward but still go down a level. This command assumes point is not in a string or comment." @@ -136,6 +142,8 @@ (defun backward-up-list (&optional arg) "Move backward out of one level of parentheses. +This command will also work on other parentheses-like expressions +defined by the current language mode. With ARG, do this that many times. A negative argument means move forward but still to a less deep spot. This command assumes point is not in a string or comment." @@ -144,6 +152,8 @@ (defun up-list (&optional arg) "Move forward out of one level of parentheses. +This command will also work on other parentheses-like expressions +defined by the current language mode. With ARG, do this that many times. A negative argument means move backward but still to a less deep spot. This command assumes point is not in a string or comment." ------------------------------------------------------------ revno: 116385 committer: Dmitry Antipov branch nick: trunk timestamp: Mon 2014-02-10 09:41:42 +0400 message: * cmds.c (Fself_insert_command): Respect the width of EMACS_INT and avoid warning. diff: === modified file 'src/ChangeLog' --- src/ChangeLog 2014-02-09 06:32:30 +0000 +++ src/ChangeLog 2014-02-10 05:41:42 +0000 @@ -1,3 +1,8 @@ +2014-02-10 Dmitry Antipov + + * cmds.c (Fself_insert_command): Respect the width of EMACS_INT + and avoid warning. + 2014-02-09 Lars Ingebrigtsen * cmds.c (Fself_insert_command): Output a clearer error message on === modified file 'src/cmds.c' --- src/cmds.c 2014-02-09 06:32:30 +0000 +++ src/cmds.c 2014-02-10 05:41:42 +0000 @@ -280,7 +280,7 @@ CHECK_NUMBER (n); if (XFASTINT (n) < 1) - error ("Repetition argument is %d, but must be higher than 0.", + error ("Repetition argument is %"pI"d, but must be higher than 0.", XFASTINT (n)); if (!EQ (Vthis_command, KVAR (current_kboard, Vlast_command))) ------------------------------------------------------------ revno: 116384 fixes bug: http://debbugs.gnu.org/15455 committer: Lars Ingebrigtsen branch nick: trunk timestamp: Sun 2014-02-09 20:26:10 -0800 message: * files.el (confirm-kill-emacs): Allow specifying an arbitrary predicate function. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-10 02:53:15 +0000 +++ lisp/ChangeLog 2014-02-10 04:26:10 +0000 @@ -1,3 +1,8 @@ +2014-02-10 Lars Ingebrigtsen + + * files.el (confirm-kill-emacs): Allow specifying an arbitrary + predicate function (bug#15455). + 2014-02-10 Dmitry Gutov * ielm.el (inferior-emacs-lisp-mode): Instead of === modified file 'lisp/files.el' --- lisp/files.el 2014-02-10 01:34:22 +0000 +++ lisp/files.el 2014-02-10 04:26:10 +0000 @@ -6501,7 +6501,8 @@ be a predicate function such as `yes-or-no-p'." :type '(choice (const :tag "Ask with yes-or-no-p" yes-or-no-p) (const :tag "Ask with y-or-n-p" y-or-n-p) - (const :tag "Don't confirm" nil)) + (const :tag "Don't confirm" nil) + (function :tag "Predicate function")) :group 'convenience :version "21.1") ------------------------------------------------------------ revno: 116383 committer: Dmitry Gutov branch nick: trunk timestamp: Mon 2014-02-10 04:53:15 +0200 message: * lisp/ielm.el (inferior-emacs-lisp-mode): Instead of `comment-use-global-state', set `comment-use-syntax'. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-10 01:38:56 +0000 +++ lisp/ChangeLog 2014-02-10 02:53:15 +0000 @@ -1,3 +1,8 @@ +2014-02-10 Dmitry Gutov + + * ielm.el (inferior-emacs-lisp-mode): Instead of + `comment-use-global-state', set `comment-use-syntax'. + 2014-02-10 Glenn Morris * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel. === modified file 'lisp/ielm.el' --- lisp/ielm.el 2014-02-10 01:34:22 +0000 +++ lisp/ielm.el 2014-02-10 02:53:15 +0000 @@ -549,7 +549,7 @@ (setq mode-line-process '(":%s on " (:eval (buffer-name ielm-working-buffer)))) ;; Useful for `hs-minor-mode'. (setq-local comment-start ";") - (setq-local comment-use-global-state t) + (setq-local comment-use-syntax t) (set (make-local-variable 'indent-line-function) 'ielm-indent-line) (set (make-local-variable 'ielm-working-buffer) (current-buffer)) ------------------------------------------------------------ revno: 116382 fixes bug: http://debbugs.gnu.org/15309 committer: Lars Ingebrigtsen branch nick: trunk timestamp: Sun 2014-02-09 18:37:43 -0800 message: * text.texi (User-Level Deletion): Document `delete-trailing-whitespace'. diff: === modified file 'doc/lispref/ChangeLog' --- doc/lispref/ChangeLog 2014-02-09 06:14:08 +0000 +++ doc/lispref/ChangeLog 2014-02-10 02:37:43 +0000 @@ -1,3 +1,8 @@ +2014-02-10 Lars Ingebrigtsen + + * text.texi (User-Level Deletion): Document + `delete-trailing-whitespace' (bug#15309). + 2014-02-09 Lars Ingebrigtsen * text.texi (Changing Properties): Clarify `propertize' (bug#9825). === modified file 'doc/lispref/text.texi' --- doc/lispref/text.texi 2014-02-09 06:14:08 +0000 +++ doc/lispref/text.texi 2014-02-10 02:37:43 +0000 @@ -787,6 +787,19 @@ @code{delete-blank-lines} returns @code{nil}. @end deffn +@deffn Command delete-trailing-whitespace start end +Delete trailing whitespace in the region defined by @var{start} and +@var{end}. + +This command deletes whitespace characters after the last +non-whitespace character in each line in the region. + +If this command acts on the entire buffer (i.e. if called +interactively with the mark inactive, or called from Lisp with +@var{end} nil), it also deletes all trailing lines at the end of the +buffer if the variable @code{delete-trailing-lines} is non-@code{nil}. +@end deffn + @node The Kill Ring @section The Kill Ring @cindex kill ring ------------------------------------------------------------ revno: 116381 committer: Glenn Morris branch nick: trunk timestamp: Sun 2014-02-09 17:38:56 -0800 message: * lisp/emacs-lisp/gulp.el (gulp-discard): Add emacs-devel. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-09 12:34:25 +0000 +++ lisp/ChangeLog 2014-02-10 01:38:56 +0000 @@ -1,3 +1,7 @@ +2014-02-10 Glenn Morris + + * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel. + 2014-02-09 Alan Mackenzie Fix c-invalidate-state-cache on narrowed buffers. === modified file 'lisp/emacs-lisp/gulp.el' --- lisp/emacs-lisp/gulp.el 2014-02-10 01:34:22 +0000 +++ lisp/emacs-lisp/gulp.el 2014-02-10 01:38:56 +0000 @@ -33,8 +33,9 @@ :prefix "-" :group 'maint) -(defcustom gulp-discard "^;+ *Maintainer: *FSF *$" +(defcustom gulp-discard "^;+ *Maintainer: *\\(FSF\\|emacs-devel@gnu\\.org\\) *$" "The regexp matching the packages not requiring the request for updates." + :version "24.4" ; added emacs-devel :type 'regexp :group 'gulp) ------------------------------------------------------------ revno: 116380 committer: Glenn Morris branch nick: trunk timestamp: Sun 2014-02-09 17:37:11 -0800 message: * lisp/emacs-lisp/lisp-mnt.el: Undocument "FSF" maintainer in commentary. diff: === modified file 'lisp/emacs-lisp/lisp-mnt.el' --- lisp/emacs-lisp/lisp-mnt.el 2014-02-10 01:34:22 +0000 +++ lisp/emacs-lisp/lisp-mnt.el 2014-02-10 01:37:11 +0000 @@ -70,11 +70,8 @@ ;; ;; Dave Brennan ;; ;; Eric Raymond ;; -;; This field may have some special values; notably "FSF", meaning -;; "Free Software Foundation". -;; ;; * Maintainer line --- should be a single name/address as in the Author -;; line, or an address only, or the string "FSF". If there is no maintainer +;; line, or an address only. If there is no maintainer ;; line, the person(s) in the Author field are presumed to be it. ;; The idea behind these two fields is to be able to write a Lisp function ;; that does "send mail to the author" without having to mine the name out by ------------------------------------------------------------ revno: 116379 committer: Glenn Morris branch nick: trunk timestamp: Sun 2014-02-09 17:34:22 -0800 message: Replace "Maintainer: FSF" with the emacs-devel mailing address diff: === modified file 'autogen.sh' --- autogen.sh 2014-01-22 01:54:10 +0000 +++ autogen.sh 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ## Copyright (C) 2011-2014 Free Software Foundation, Inc. ## Author: Glenn Morris -## Maintainer: FSF +## Maintainer: emacs-devel@gnu.org ## This file is part of GNU Emacs. === modified file 'build-aux/make-info-dir' --- build-aux/make-info-dir 2014-01-22 01:54:10 +0000 +++ build-aux/make-info-dir 2014-02-10 01:34:22 +0000 @@ -5,7 +5,7 @@ ## Copyright (C) 2013-2014 Free Software Foundation, Inc. ## Author: Glenn Morris -## Maintainer: FSF +## Maintainer: emacs-devel@gnu.org ## This file is part of GNU Emacs. === modified file 'lisp/abbrev.el' --- lisp/abbrev.el 2014-02-08 01:26:13 +0000 +++ lisp/abbrev.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1987, 1992, 2001-2014 Free Software Foundation, ;; Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: abbrev convenience ;; Package: emacs === modified file 'lisp/align.el' --- lisp/align.el 2014-01-01 07:43:34 +0000 +++ lisp/align.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1999-2014 Free Software Foundation, Inc. ;; Author: John Wiegley -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: convenience languages lisp ;; This file is part of GNU Emacs. === modified file 'lisp/array.el' --- lisp/array.el 2014-01-01 07:43:34 +0000 +++ lisp/array.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1987, 2000-2014 Free Software Foundation, Inc. ;; Author: David M. Brown -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: extensions ;; This file is part of GNU Emacs. === modified file 'lisp/autoinsert.el' --- lisp/autoinsert.el 2014-01-01 07:43:34 +0000 +++ lisp/autoinsert.el 2014-02-10 01:34:22 +0000 @@ -6,7 +6,7 @@ ;; Author: Charlie Martin ;; Adapted-By: Daniel Pfeiffer ;; Keywords: convenience -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; This file is part of GNU Emacs. === modified file 'lisp/bindings.el' --- lisp/bindings.el 2014-01-01 07:43:34 +0000 +++ lisp/bindings.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1987, 1992-1996, 1999-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/buff-menu.el' --- lisp/buff-menu.el 2014-01-01 07:43:34 +0000 +++ lisp/buff-menu.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1987, 1993-1995, 2000-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: convenience ;; Package: emacs === modified file 'lisp/case-table.el' --- lisp/case-table.el 2014-01-01 07:43:34 +0000 +++ lisp/case-table.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1988, 1994, 2001-2014 Free Software Foundation, Inc. ;; Author: Howard Gayle -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: i18n ;; Package: emacs === modified file 'lisp/cdl.el' --- lisp/cdl.el 2014-01-01 07:43:34 +0000 +++ lisp/cdl.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1993, 2001-2014 Free Software Foundation, Inc. ;; Author: ATAE@spva.physics.imperial.ac.uk (Ata Etemadi) -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: data ;; This file is part of GNU Emacs. === modified file 'lisp/cedet/semantic/senator.el' --- lisp/cedet/semantic/senator.el 2014-02-03 00:40:49 +0000 +++ lisp/cedet/semantic/senator.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2000-2014 Free Software Foundation, Inc. ;; Author: David Ponce -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 10 Nov 2000 ;; Keywords: syntax === modified file 'lisp/chistory.el' --- lisp/chistory.el 2014-01-01 07:43:34 +0000 +++ lisp/chistory.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985, 2001-2014 Free Software Foundation, Inc. ;; Author: K. Shane Hartman -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: convenience ;; This file is part of GNU Emacs. === modified file 'lisp/cmuscheme.el' --- lisp/cmuscheme.el 2014-01-01 07:43:34 +0000 +++ lisp/cmuscheme.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Olin Shivers -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: processes, lisp ;; This file is part of GNU Emacs. === modified file 'lisp/comint.el' --- lisp/comint.el 2014-02-02 07:51:26 +0000 +++ lisp/comint.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Olin Shivers ;; Simon Marshall -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: processes ;; Package: emacs === modified file 'lisp/completion.el' --- lisp/completion.el 2014-01-01 07:43:34 +0000 +++ lisp/completion.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1990, 1993, 1995, 1997, 2001-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: abbrev convenience ;; Author: Jim Salem of Thinking Machines Inc. ;; (ideas suggested by Brewster Kahle) === modified file 'lisp/cus-edit.el' --- lisp/cus-edit.el 2014-02-09 05:05:06 +0000 +++ lisp/cus-edit.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1996-1997, 1999-2014 Free Software Foundation, Inc. ;; ;; Author: Per Abrahamsen -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: help, faces ;; Package: emacs === modified file 'lisp/cus-theme.el' --- lisp/cus-theme.el 2014-01-01 07:43:34 +0000 +++ lisp/cus-theme.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2001-2014 Free Software Foundation, Inc. ;; ;; Author: Alex Schroeder -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: help, faces ;; Package: emacs === modified file 'lisp/custom.el' --- lisp/custom.el 2014-01-01 07:43:34 +0000 +++ lisp/custom.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; ;; Author: Per Abrahamsen -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: help, faces ;; Package: emacs === modified file 'lisp/delsel.el' --- lisp/delsel.el 2014-01-31 07:28:17 +0000 +++ lisp/delsel.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Matthieu Devin -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 14 Jul 92 ;; Keywords: convenience emulations === modified file 'lisp/descr-text.el' --- lisp/descr-text.el 2014-01-01 07:43:34 +0000 +++ lisp/descr-text.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1994-1996, 2001-2014 Free Software Foundation, Inc. ;; Author: Boris Goldowsky -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: faces, i18n, Unicode, multilingual ;; This file is part of GNU Emacs. === modified file 'lisp/dired-aux.el' --- lisp/dired-aux.el 2014-02-09 04:30:00 +0000 +++ lisp/dired-aux.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Foundation, Inc. ;; Author: Sebastian Kremer . -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: files ;; Package: emacs === modified file 'lisp/dired.el' --- lisp/dired.el 2014-02-09 11:23:00 +0000 +++ lisp/dired.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Foundation, Inc. ;; Author: Sebastian Kremer -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: files ;; Package: emacs === modified file 'lisp/disp-table.el' --- lisp/disp-table.el 2014-01-01 07:43:34 +0000 +++ lisp/disp-table.el 2014-02-10 01:34:22 +0000 @@ -5,7 +5,7 @@ ;; Author: Erik Naggum ;; Based on a previous version by Howard Gayle -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: i18n ;; Package: emacs === modified file 'lisp/dnd.el' --- lisp/dnd.el 2014-01-01 07:43:34 +0000 +++ lisp/dnd.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2005-2014 Free Software Foundation, Inc. ;; Author: Jan Djärv -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: window, drag, drop ;; Package: emacs === modified file 'lisp/dos-vars.el' --- lisp/dos-vars.el 2014-01-01 07:43:34 +0000 +++ lisp/dos-vars.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1998, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/dynamic-setting.el' --- lisp/dynamic-setting.el 2014-01-01 07:43:34 +0000 +++ lisp/dynamic-setting.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2009-2014 Free Software Foundation, Inc. ;; Author: Jan Djärv -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: font, system-font, tool-bar-style ;; Package: emacs === modified file 'lisp/ebuff-menu.el' --- lisp/ebuff-menu.el 2014-01-01 07:43:34 +0000 +++ lisp/ebuff-menu.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Richard Mlynarik -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: convenience ;; This file is part of GNU Emacs. === modified file 'lisp/echistory.el' --- lisp/echistory.el 2014-01-01 07:43:34 +0000 +++ lisp/echistory.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985, 2001-2014 Free Software Foundation, Inc. ;; Author: K. Shane Hartman -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; This file is part of GNU Emacs. === modified file 'lisp/ehelp.el' --- lisp/ehelp.el 2014-01-01 07:43:34 +0000 +++ lisp/ehelp.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Richard Mlynarik ;; (according to ack.texi and authors.el) -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: help, extensions ;; This file is part of GNU Emacs. === modified file 'lisp/electric.el' --- lisp/electric.el 2014-01-01 07:43:34 +0000 +++ lisp/electric.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: K. Shane Hartman -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: extensions ;; This file is part of GNU Emacs. === modified file 'lisp/emacs-lisp/advice.el' --- lisp/emacs-lisp/advice.el 2014-01-03 05:37:58 +0000 +++ lisp/emacs-lisp/advice.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1993-1994, 2000-2014 Free Software Foundation, Inc. ;; Author: Hans Chalupsky -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 12 Dec 1992 ;; Keywords: extensions, lisp, tools ;; Package: emacs === modified file 'lisp/emacs-lisp/avl-tree.el' --- lisp/emacs-lisp/avl-tree.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/avl-tree.el 2014-02-10 01:34:22 +0000 @@ -6,7 +6,7 @@ ;; Inge Wallin ;; Thomas Bellman ;; Toby Cubitt -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 10 May 1991 ;; Keywords: extensions, data structures, AVL, tree === modified file 'lisp/emacs-lisp/backquote.el' --- lisp/emacs-lisp/backquote.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/backquote.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Rick Sladkey -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: extensions, internal ;; Package: emacs === modified file 'lisp/emacs-lisp/byte-opt.el' --- lisp/emacs-lisp/byte-opt.el 2014-01-06 23:34:05 +0000 +++ lisp/emacs-lisp/byte-opt.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Jamie Zawinski ;; Hallvard Furuseth -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/emacs-lisp/byte-run.el' --- lisp/emacs-lisp/byte-run.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/byte-run.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Jamie Zawinski ;; Hallvard Furuseth -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/emacs-lisp/bytecomp.el' --- lisp/emacs-lisp/bytecomp.el 2014-02-07 03:23:46 +0000 +++ lisp/emacs-lisp/bytecomp.el 2014-02-10 01:34:22 +0000 @@ -5,7 +5,7 @@ ;; Author: Jamie Zawinski ;; Hallvard Furuseth -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: lisp ;; Package: emacs === modified file 'lisp/emacs-lisp/cconv.el' --- lisp/emacs-lisp/cconv.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/cconv.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2011-2014 Free Software Foundation, Inc. ;; Author: Igor Kuzmin -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: lisp ;; Package: emacs === modified file 'lisp/emacs-lisp/cl-indent.el' --- lisp/emacs-lisp/cl-indent.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/cl-indent.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Richard Mlynarik ;; Created: July 1987 -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: lisp, tools ;; Package: emacs === modified file 'lisp/emacs-lisp/debug.el' --- lisp/emacs-lisp/debug.el 2014-01-06 06:25:30 +0000 +++ lisp/emacs-lisp/debug.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1986, 1994, 2001-2014 Free Software Foundation, ;; Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: lisp, tools, maint ;; This file is part of GNU Emacs. === modified file 'lisp/emacs-lisp/derived.el' --- lisp/emacs-lisp/derived.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/derived.el 2014-02-10 01:34:22 +0000 @@ -5,7 +5,7 @@ ;; Inc. ;; Author: David Megginson (dmeggins@aix1.uottawa.ca) -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: extensions ;; Package: emacs === modified file 'lisp/emacs-lisp/disass.el' --- lisp/emacs-lisp/disass.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/disass.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Doug Cutting ;; Jamie Zawinski -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; This file is part of GNU Emacs. === modified file 'lisp/emacs-lisp/edebug.el' --- lisp/emacs-lisp/edebug.el 2014-01-14 02:51:52 +0000 +++ lisp/emacs-lisp/edebug.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Daniel LaLiberte -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: lisp, tools, maint ;; This file is part of GNU Emacs. === modified file 'lisp/emacs-lisp/elp.el' --- lisp/emacs-lisp/elp.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/elp.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Foundation, Inc. ;; Author: Barry A. Warsaw -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 26-Feb-1994 ;; Keywords: debugging lisp tools === modified file 'lisp/emacs-lisp/find-gc.el' --- lisp/emacs-lisp/find-gc.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/find-gc.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1992, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; This file is part of GNU Emacs. === modified file 'lisp/emacs-lisp/float-sup.el' --- lisp/emacs-lisp/float-sup.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/float-sup.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985-1987, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/emacs-lisp/gulp.el' --- lisp/emacs-lisp/gulp.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/gulp.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1996, 2001-2014 Free Software Foundation, Inc. ;; Author: Sam Shteingold -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: maint ;; This file is part of GNU Emacs. === modified file 'lisp/emacs-lisp/helper.el' --- lisp/emacs-lisp/helper.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/helper.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985, 2001-2014 Free Software Foundation, Inc. ;; Author: K. Shane Hartman -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: help ;; Package: emacs === modified file 'lisp/emacs-lisp/lisp-mnt.el' --- lisp/emacs-lisp/lisp-mnt.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/lisp-mnt.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Eric S. Raymond -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 14 Jul 1992 ;; Keywords: docs ;; X-Bogus-Bureaucratic-Cruft: Gruad will get you if you don't watch out! === modified file 'lisp/emacs-lisp/lisp-mode.el' --- lisp/emacs-lisp/lisp-mode.el 2014-01-30 07:42:57 +0000 +++ lisp/emacs-lisp/lisp-mode.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985-1986, 1999-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: lisp, languages ;; Package: emacs === modified file 'lisp/emacs-lisp/lisp.el' --- lisp/emacs-lisp/lisp.el 2014-02-06 05:37:23 +0000 +++ lisp/emacs-lisp/lisp.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1986, 1994, 2000-2014 Free Software Foundation, ;; Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: lisp, languages ;; Package: emacs === modified file 'lisp/emacs-lisp/map-ynp.el' --- lisp/emacs-lisp/map-ynp.el 2014-01-22 01:50:40 +0000 +++ lisp/emacs-lisp/map-ynp.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1991-1995, 2000-2014 Free Software Foundation, Inc. ;; Author: Roland McGrath -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: lisp, extensions ;; Package: emacs === modified file 'lisp/emacs-lisp/regexp-opt.el' --- lisp/emacs-lisp/regexp-opt.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/regexp-opt.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1994-2014 Free Software Foundation, Inc. ;; Author: Simon Marshall -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: strings, regexps, extensions ;; This file is part of GNU Emacs. === modified file 'lisp/emacs-lisp/ring.el' --- lisp/emacs-lisp/ring.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/ring.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1992, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: extensions ;; This file is part of GNU Emacs. === modified file 'lisp/emacs-lisp/rx.el' --- lisp/emacs-lisp/rx.el 2014-01-05 06:10:52 +0000 +++ lisp/emacs-lisp/rx.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2001-2014 Free Software Foundation, Inc. ;; Author: Gerd Moellmann -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: strings, regexps, extensions ;; This file is part of GNU Emacs. === modified file 'lisp/emacs-lisp/subr-x.el' --- lisp/emacs-lisp/subr-x.el 2014-01-20 20:05:04 +0000 +++ lisp/emacs-lisp/subr-x.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 2013-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: convenience ;; Package: emacs === modified file 'lisp/emacs-lisp/syntax.el' --- lisp/emacs-lisp/syntax.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/syntax.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 2000-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; This file is part of GNU Emacs. === modified file 'lisp/emacs-lisp/timer.el' --- lisp/emacs-lisp/timer.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/timer.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1996, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Package: emacs ;; This file is part of GNU Emacs. === modified file 'lisp/emacs-lisp/tq.el' --- lisp/emacs-lisp/tq.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/tq.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Scott Draves -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Adapted-By: ESR ;; Keywords: extensions === modified file 'lisp/emacs-lisp/trace.el' --- lisp/emacs-lisp/trace.el 2014-01-31 07:15:54 +0000 +++ lisp/emacs-lisp/trace.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1993, 1998, 2000-2014 Free Software Foundation, Inc. ;; Author: Hans Chalupsky -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 15 Dec 1992 ;; Keywords: tools, lisp === modified file 'lisp/emacs-lisp/warnings.el' --- lisp/emacs-lisp/warnings.el 2014-02-09 00:20:12 +0000 +++ lisp/emacs-lisp/warnings.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 2002-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; This file is part of GNU Emacs. === modified file 'lisp/emacs-lock.el' --- lisp/emacs-lock.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lock.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Juanma Barranquero ;; Inspired by emacs-lock.el by Tom Wurgler -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: extensions, processes ;; This file is part of GNU Emacs. === modified file 'lisp/env.el' --- lisp/env.el 2014-01-01 07:43:34 +0000 +++ lisp/env.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1991, 1994, 2000-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: processes, unix ;; Package: emacs === modified file 'lisp/erc/erc-autoaway.el' --- lisp/erc/erc-autoaway.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-autoaway.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2002-2004, 2006-2014 Free Software Foundation, Inc. ;; Author: Jorgen Schaefer -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; URL: http://www.emacswiki.org/cgi-bin/wiki.pl?ErcAutoAway ;; This file is part of GNU Emacs. === modified file 'lisp/erc/erc-backend.el' --- lisp/erc/erc-backend.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-backend.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Filename: erc-backend.el ;; Author: Lawrence Mitchell -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 2004-05-7 ;; Keywords: IRC chat client internet === modified file 'lisp/erc/erc-button.el' --- lisp/erc/erc-button.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-button.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1996-2004, 2006-2014 Free Software Foundation, Inc. ;; Author: Mario Lang -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: irc, button, url, regexp ;; URL: http://www.emacswiki.org/cgi-bin/wiki.pl?ErcButton === modified file 'lisp/erc/erc-capab.el' --- lisp/erc/erc-capab.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-capab.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 2006-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ; This file is part of GNU Emacs. === modified file 'lisp/erc/erc-compat.el' --- lisp/erc/erc-compat.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-compat.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2002-2003, 2005-2014 Free Software Foundation, Inc. ;; Author: Alex Schroeder -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; URL: http://www.emacswiki.org/cgi-bin/wiki/ERC ;; This file is part of GNU Emacs. === modified file 'lisp/erc/erc-dcc.el' --- lisp/erc/erc-dcc.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-dcc.el 2014-02-10 01:34:22 +0000 @@ -6,7 +6,7 @@ ;; Author: Ben A. Mesander ;; Noah Friedman ;; Per Persson -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm, processes ;; Created: 1994-01-23 === modified file 'lisp/erc/erc-ezbounce.el' --- lisp/erc/erc-ezbounce.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-ezbounce.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2002, 2004, 2006-2014 Free Software Foundation, Inc. ;; Author: Andreas Fuchs -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm ;; This file is part of GNU Emacs. === modified file 'lisp/erc/erc-fill.el' --- lisp/erc/erc-fill.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-fill.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Andreas Fuchs ;; Mario Lang -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; URL: http://www.emacswiki.org/cgi-bin/wiki.pl?ErcFilling ;; This file is part of GNU Emacs. === modified file 'lisp/erc/erc-goodies.el' --- lisp/erc/erc-goodies.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-goodies.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2001-2014 Free Software Foundation, Inc. ;; Author: Jorgen Schaefer -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Most code is taken verbatim from erc.el, see there for the original ;; authors. === modified file 'lisp/erc/erc-ibuffer.el' --- lisp/erc/erc-ibuffer.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-ibuffer.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2002, 2004, 2006-2014 Free Software Foundation, Inc. ;; Author: Mario Lang -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm ;; URL: http://www.emacswiki.org/cgi-bin/wiki.pl?ErcIbuffer === modified file 'lisp/erc/erc-identd.el' --- lisp/erc/erc-identd.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-identd.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2003, 2006-2014 Free Software Foundation, Inc. ;; Author: John Wiegley -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm, processes ;; This file is part of GNU Emacs. === modified file 'lisp/erc/erc-imenu.el' --- lisp/erc/erc-imenu.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-imenu.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Mario Lang -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm ;; URL: http://www.emacswiki.org/cgi-bin/wiki.pl?ErcImenu === modified file 'lisp/erc/erc-join.el' --- lisp/erc/erc-join.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-join.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2002-2004, 2006-2014 Free Software Foundation, Inc. ;; Author: Alex Schroeder -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: irc ;; URL: http://www.emacswiki.org/cgi-bin/wiki.pl?ErcAutoJoin === modified file 'lisp/erc/erc-lang.el' --- lisp/erc/erc-lang.el 2014-01-05 02:56:08 +0000 +++ lisp/erc/erc-lang.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2002, 2004, 2006-2014 Free Software Foundation, Inc. ;; Author: Alex Schroeder -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Version: 1.0.0 ;; URL: http://www.emacswiki.org/cgi-bin/wiki.pl?ErcLang ;; Keywords: comm languages processes === modified file 'lisp/erc/erc-list.el' --- lisp/erc/erc-list.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-list.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2008-2014 Free Software Foundation, Inc. ;; Author: Tom Tromey -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Version: 0.1 ;; Keywords: comm === modified file 'lisp/erc/erc-log.el' --- lisp/erc/erc-log.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-log.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2003-2014 Free Software Foundation, Inc. ;; Author: Lawrence Mitchell -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: IRC, chat, client, Internet, logging ;; Created 2003-04-26 === modified file 'lisp/erc/erc-match.el' --- lisp/erc/erc-match.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-match.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2002-2014 Free Software Foundation, Inc. ;; Author: Andreas Fuchs -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm, faces ;; URL: http://www.emacswiki.org/cgi-bin/wiki.pl?ErcMatch === modified file 'lisp/erc/erc-menu.el' --- lisp/erc/erc-menu.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-menu.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2001-2002, 2004-2014 Free Software Foundation, Inc. ;; Author: Mario Lang -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm, processes, menu ;; This file is part of GNU Emacs. === modified file 'lisp/erc/erc-netsplit.el' --- lisp/erc/erc-netsplit.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-netsplit.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2002-2004, 2006-2014 Free Software Foundation, Inc. ;; Author: Mario Lang -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm ;; This file is part of GNU Emacs. === modified file 'lisp/erc/erc-networks.el' --- lisp/erc/erc-networks.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-networks.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2002, 2004-2014 Free Software Foundation, Inc. ;; Author: Mario Lang -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm ;; This file is part of GNU Emacs. === modified file 'lisp/erc/erc-notify.el' --- lisp/erc/erc-notify.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-notify.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2002-2004, 2006-2014 Free Software Foundation, Inc. ;; Author: Mario Lang -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm ;; This file is part of GNU Emacs. === modified file 'lisp/erc/erc-page.el' --- lisp/erc/erc-page.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-page.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 2002, 2004, 2006-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; This file is part of GNU Emacs. === modified file 'lisp/erc/erc-pcomplete.el' --- lisp/erc/erc-pcomplete.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-pcomplete.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2002-2004, 2006-2014 Free Software Foundation, Inc. ;; Author: Sacha Chua -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm, convenience ;; URL: http://www.emacswiki.org/cgi-bin/wiki.pl?ErcCompletion === modified file 'lisp/erc/erc-replace.el' --- lisp/erc/erc-replace.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-replace.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Andreas Fuchs -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: IRC, client, Internet ;; This file is part of GNU Emacs. === modified file 'lisp/erc/erc-ring.el' --- lisp/erc/erc-ring.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-ring.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2001-2004, 2006-2014 Free Software Foundation, Inc. ;; Author: Alex Schroeder -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm ;; URL: http://www.emacswiki.org/cgi-bin/wiki.pl?ErcHistory === modified file 'lisp/erc/erc-services.el' --- lisp/erc/erc-services.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-services.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 2002-2004, 2006-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; This file is part of GNU Emacs. === modified file 'lisp/erc/erc-sound.el' --- lisp/erc/erc-sound.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-sound.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 2002-2003, 2006-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; This file is part of GNU Emacs. === modified file 'lisp/erc/erc-speedbar.el' --- lisp/erc/erc-speedbar.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-speedbar.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Mario Lang ;; Contributor: Eric M. Ludlam -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; This file is part of GNU Emacs. === modified file 'lisp/erc/erc-spelling.el' --- lisp/erc/erc-spelling.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-spelling.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2005-2014 Free Software Foundation, Inc. ;; Author: Jorgen Schaefer -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: irc ;; URL: http://www.emacswiki.org/cgi-bin/wiki.pl?ErcSpelling === modified file 'lisp/erc/erc-stamp.el' --- lisp/erc/erc-stamp.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-stamp.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2002-2004, 2006-2014 Free Software Foundation, Inc. ;; Author: Mario Lang -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm, processes, timestamp ;; URL: http://www.emacswiki.org/cgi-bin/wiki.pl?ErcStamp === modified file 'lisp/erc/erc-track.el' --- lisp/erc/erc-track.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-track.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2002-2014 Free Software Foundation, Inc. ;; Author: Mario Lang -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm, faces ;; URL: http://www.emacswiki.org/cgi-bin/wiki.pl?ErcChannelTracking === modified file 'lisp/erc/erc-truncate.el' --- lisp/erc/erc-truncate.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-truncate.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2003-2004, 2006-2014 Free Software Foundation, Inc. ;; Author: Andreas Fuchs -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: IRC, chat, client, Internet, logging ;; This file is part of GNU Emacs. === modified file 'lisp/erc/erc-xdcc.el' --- lisp/erc/erc-xdcc.el 2014-01-01 07:43:34 +0000 +++ lisp/erc/erc-xdcc.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2003-2004, 2006-2014 Free Software Foundation, Inc. ;; Author: Mario Lang -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm, processes ;; This file is part of GNU Emacs. === modified file 'lisp/erc/erc.el' --- lisp/erc/erc.el 2014-01-31 06:39:51 +0000 +++ lisp/erc/erc.el 2014-02-10 01:34:22 +0000 @@ -9,7 +9,7 @@ ;; Andreas Fuchs (afs@void.at) ;; Gergely Nagy (algernon@midgard.debian.net) ;; David Edmondson (dme@dme.org) -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: IRC, chat, client, Internet ;; Version: 5.3 === modified file 'lisp/faces.el' --- lisp/faces.el 2014-02-04 07:36:58 +0000 +++ lisp/faces.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1992-1996, 1998-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/ffap.el' --- lisp/ffap.el 2014-01-01 07:43:34 +0000 +++ lisp/ffap.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1995-1997, 2000-2014 Free Software Foundation, Inc. ;; Author: Michelangelo Grigni -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 29 Mar 1993 ;; Keywords: files, hypermedia, matching, mouse, convenience ;; X-URL: ftp://ftp.mathcs.emory.edu/pub/mic/emacs/ === modified file 'lisp/files-x.el' --- lisp/files-x.el 2014-01-01 07:43:34 +0000 +++ lisp/files-x.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2009-2014 Free Software Foundation, Inc. ;; Author: Juri Linkov -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: files ;; Package: emacs === modified file 'lisp/files.el' --- lisp/files.el 2014-02-09 05:32:41 +0000 +++ lisp/files.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985-1987, 1992-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Package: emacs ;; This file is part of GNU Emacs. === modified file 'lisp/filesets.el' --- lisp/filesets.el 2014-01-06 06:25:30 +0000 +++ lisp/filesets.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2002-2014 Free Software Foundation, Inc. ;; Author: Thomas Link -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: filesets convenience ;; This file is part of GNU Emacs. === modified file 'lisp/find-dired.el' --- lisp/find-dired.el 2014-02-08 11:09:10 +0000 +++ lisp/find-dired.el 2014-02-10 01:34:22 +0000 @@ -5,7 +5,7 @@ ;; Author: Roland McGrath , ;; Sebastian Kremer -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: unix ;; This file is part of GNU Emacs. === modified file 'lisp/find-file.el' --- lisp/find-file.el 2014-01-01 07:43:34 +0000 +++ lisp/find-file.el 2014-02-10 01:34:22 +0000 @@ -1,7 +1,7 @@ ;;; find-file.el --- find a file corresponding to this one given a pattern ;; Author: Henry Guillaume -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: c, matching, tools ;; Copyright (C) 1994-1995, 2001-2014 Free Software Foundation, Inc. === modified file 'lisp/flow-ctrl.el' --- lisp/flow-ctrl.el 2014-01-01 07:43:34 +0000 +++ lisp/flow-ctrl.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Kevin Gallagher -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Adapted-By: ESR ;; Keywords: hardware === modified file 'lisp/foldout.el' --- lisp/foldout.el 2014-01-01 07:43:34 +0000 +++ lisp/foldout.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1994, 2001-2014 Free Software Foundation, Inc. ;; Author: Kevin Broadey -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 27 Jan 1994 ;; Version: 1.10 ;; Keywords: folding, outlines === modified file 'lisp/follow.el' --- lisp/follow.el 2014-01-16 00:26:45 +0000 +++ lisp/follow.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Anders Lindgren -;; Maintainer: FSF (Anders' email bounces, Sep 2005) +;; Maintainer: emacs-devel@gnu.org (Anders' email bounces, Sep 2005) ;; Created: 1995-05-25 ;; Keywords: display, window, minor-mode, convenience === modified file 'lisp/font-core.el' --- lisp/font-core.el 2014-01-01 07:43:34 +0000 +++ lisp/font-core.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1992-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: languages, faces ;; Package: emacs === modified file 'lisp/font-lock.el' --- lisp/font-lock.el 2014-02-09 03:25:19 +0000 +++ lisp/font-lock.el 2014-02-10 01:34:22 +0000 @@ -5,7 +5,7 @@ ;; Author: Jamie Zawinski ;; Richard Stallman ;; Stefan Monnier -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: languages, faces ;; Package: emacs === modified file 'lisp/frame.el' --- lisp/frame.el 2014-01-01 07:43:34 +0000 +++ lisp/frame.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1993-1994, 1996-1997, 2000-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/fringe.el' --- lisp/fringe.el 2014-02-08 04:40:26 +0000 +++ lisp/fringe.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2002-2014 Free Software Foundation, Inc. ;; Author: Simon Josefsson -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: frames ;; Package: emacs === modified file 'lisp/gnus/pop3.el' --- lisp/gnus/pop3.el 2014-01-05 02:56:08 +0000 +++ lisp/gnus/pop3.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1996-2014 Free Software Foundation, Inc. ;; Author: Richard L. Pieri -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mail ;; This file is part of GNU Emacs. === modified file 'lisp/gs.el' --- lisp/gs.el 2014-01-01 07:43:34 +0000 +++ lisp/gs.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1998, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; This file is part of GNU Emacs. === modified file 'lisp/help-fns.el' --- lisp/help-fns.el 2014-02-08 02:55:04 +0000 +++ lisp/help-fns.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1986, 1993-1994, 1998-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: help, internal ;; Package: emacs === modified file 'lisp/help-macro.el' --- lisp/help-macro.el 2014-01-01 07:43:34 +0000 +++ lisp/help-macro.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1993-1994, 2001-2014 Free Software Foundation, Inc. ;; Author: Lynn Slater -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: Mon Oct 1 11:42:39 1990 ;; Adapted-By: ESR ;; Package: emacs === modified file 'lisp/help-mode.el' --- lisp/help-mode.el 2014-01-01 07:43:34 +0000 +++ lisp/help-mode.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1986, 1993-1994, 1998-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: help, internal ;; Package: emacs === modified file 'lisp/help.el' --- lisp/help.el 2014-02-09 06:01:33 +0000 +++ lisp/help.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1986, 1993-1994, 1998-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: help, internal ;; Package: emacs === modified file 'lisp/hexl.el' --- lisp/hexl.el 2014-01-30 07:42:57 +0000 +++ lisp/hexl.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1989, 1994, 1998, 2001-2014 Free Software Foundation, Inc. ;; Author: Keith Gabryelski -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: data ;; This file is part of GNU Emacs. === modified file 'lisp/hippie-exp.el' --- lisp/hippie-exp.el 2014-01-29 08:31:50 +0000 +++ lisp/hippie-exp.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1992, 2001-2014 Free Software Foundation, Inc. ;; Author: Anders Holst -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Version: 1.6 ;; Keywords: abbrev convenience === modified file 'lisp/hl-line.el' --- lisp/hl-line.el 2014-01-06 20:54:37 +0000 +++ lisp/hl-line.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1998, 2000-2014 Free Software Foundation, Inc. ;; Author: Dave Love -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 1998-09-13 ;; Keywords: faces, frames, emulations === modified file 'lisp/ielm.el' --- lisp/ielm.el 2014-01-30 07:42:57 +0000 +++ lisp/ielm.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Copyright (C) 1994, 2001-2014 Free Software Foundation, Inc. ;; Author: David Smith -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 25 Feb 1994 ;; Keywords: lisp === modified file 'lisp/image.el' --- lisp/image.el 2014-01-22 08:30:00 +0000 +++ lisp/image.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1998-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: multimedia ;; Package: emacs === modified file 'lisp/imenu.el' --- lisp/imenu.el 2014-01-01 07:43:34 +0000 +++ lisp/imenu.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Ake Stenhoff ;; Lars Lindberg -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 8 Feb 1994 ;; Keywords: tools convenience === modified file 'lisp/indent.el' --- lisp/indent.el 2014-01-28 01:49:02 +0000 +++ lisp/indent.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985, 1995, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Package: emacs ;; This file is part of GNU Emacs. === modified file 'lisp/info.el' --- lisp/info.el 2014-01-13 08:04:09 +0000 +++ lisp/info.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985-1986, 1992-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: help ;; This file is part of GNU Emacs. === modified file 'lisp/informat.el' --- lisp/informat.el 2014-01-01 07:43:34 +0000 +++ lisp/informat.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1986, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: help ;; This file is part of GNU Emacs. === modified file 'lisp/international/iso-ascii.el' --- lisp/international/iso-ascii.el 2014-01-01 07:43:34 +0000 +++ lisp/international/iso-ascii.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Howard Gayle -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: i18n ;; This file is part of GNU Emacs. === modified file 'lisp/international/iso-transl.el' --- lisp/international/iso-transl.el 2014-01-01 07:43:34 +0000 +++ lisp/international/iso-transl.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Howard Gayle -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: i18n ;; This file is part of GNU Emacs. === modified file 'lisp/isearch.el' --- lisp/isearch.el 2014-02-08 10:20:45 +0000 +++ lisp/isearch.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1992-1997, 1999-2014 Free Software Foundation, Inc. ;; Author: Daniel LaLiberte -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: matching ;; Package: emacs === modified file 'lisp/isearchb.el' --- lisp/isearchb.el 2014-01-01 07:43:34 +0000 +++ lisp/isearchb.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2004-2014 Free Software Foundation, Inc. ;; Author: John Wiegley -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 16 Apr 2004 ;; Version: 1.5 ;; Keywords: lisp === modified file 'lisp/jka-cmpr-hook.el' --- lisp/jka-cmpr-hook.el 2014-01-17 02:59:24 +0000 +++ lisp/jka-cmpr-hook.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Free Software Foundation, Inc. ;; Author: Jay K. Adams -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: data ;; Package: emacs === modified file 'lisp/jka-compr.el' --- lisp/jka-compr.el 2014-01-17 02:59:24 +0000 +++ lisp/jka-compr.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1993-1995, 1997, 1999-2014 Free Software Foundation, Inc. ;; Author: Jay K. Adams -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: data ;; This file is part of GNU Emacs. === modified file 'lisp/kermit.el' --- lisp/kermit.el 2014-01-01 07:43:34 +0000 +++ lisp/kermit.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1988, 2001-2014 Free Software Foundation, Inc. ;; Author: Jeff Norden -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 15 Feb 1988 ;; Keywords: comm === modified file 'lisp/linum.el' --- lisp/linum.el 2014-01-01 07:43:34 +0000 +++ lisp/linum.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2008-2014 Free Software Foundation, Inc. ;; Author: Markus Triska -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: convenience ;; Version: 0.9x === modified file 'lisp/loadhist.el' --- lisp/loadhist.el 2014-01-01 07:43:34 +0000 +++ lisp/loadhist.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1995, 1998, 2000-2014 Free Software Foundation, Inc. ;; Author: Eric S. Raymond -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; This file is part of GNU Emacs. === modified file 'lisp/loadup.el' --- lisp/loadup.el 2014-01-08 22:57:47 +0000 +++ lisp/loadup.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1986, 1992, 1994, 2001-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/lpr.el' --- lisp/lpr.el 2014-01-06 06:25:30 +0000 +++ lisp/lpr.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985, 1988, 1992, 1994, 2001-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: unix ;; This file is part of GNU Emacs. === modified file 'lisp/ls-lisp.el' --- lisp/ls-lisp.el 2014-01-01 07:43:34 +0000 +++ lisp/ls-lisp.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Sebastian Kremer ;; Modified by: Francis J. Wright -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: unix, dired ;; Package: emacs === modified file 'lisp/macros.el' --- lisp/macros.el 2014-02-08 03:03:50 +0000 +++ lisp/macros.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1987, 1992, 1994-1995, 2001-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: abbrev ;; Package: emacs === modified file 'lisp/mail/blessmail.el' --- lisp/mail/blessmail.el 2014-01-01 07:43:34 +0000 +++ lisp/mail/blessmail.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1994, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/mail/emacsbug.el' --- lisp/mail/emacsbug.el 2014-01-08 22:57:47 +0000 +++ lisp/mail/emacsbug.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Foundation, Inc. ;; Author: K. Shane Hartman -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: maint mail ;; Package: emacs === modified file 'lisp/mail/mail-extr.el' --- lisp/mail/mail-extr.el 2014-01-01 07:43:34 +0000 +++ lisp/mail/mail-extr.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Joe Wells -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mail ;; Package: mail-utils === modified file 'lisp/mail/mail-utils.el' --- lisp/mail/mail-utils.el 2014-01-01 07:43:34 +0000 +++ lisp/mail/mail-utils.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mail, news ;; This file is part of GNU Emacs. === modified file 'lisp/mail/mailabbrev.el' --- lisp/mail/mailabbrev.el 2014-01-01 07:43:34 +0000 +++ lisp/mail/mailabbrev.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Software Foundation, Inc. ;; Author: Jamie Zawinski -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 19 Oct 90 ;; Keywords: mail === modified file 'lisp/mail/mailalias.el' --- lisp/mail/mailalias.el 2014-01-01 07:43:34 +0000 +++ lisp/mail/mailalias.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985, 1987, 1995-1997, 2001-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mail ;; This file is part of GNU Emacs. === modified file 'lisp/mail/reporter.el' --- lisp/mail/reporter.el 2014-01-31 02:39:40 +0000 +++ lisp/mail/reporter.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1993-1998, 2001-2014 Free Software Foundation, Inc. ;; Author: 1993-1998 Barry A. Warsaw -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 19-Apr-1993 ;; Keywords: maint mail tools === modified file 'lisp/mail/rfc822.el' --- lisp/mail/rfc822.el 2014-01-01 07:43:34 +0000 +++ lisp/mail/rfc822.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Richard Mlynarik -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mail ;; This file is part of GNU Emacs. === modified file 'lisp/mail/rmail.el' --- lisp/mail/rmail.el 2014-01-22 01:50:40 +0000 +++ lisp/mail/rmail.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1988, 1993-1998, 2000-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mail ;; This file is part of GNU Emacs. === modified file 'lisp/mail/rmailedit.el' --- lisp/mail/rmailedit.el 2014-01-01 07:43:34 +0000 +++ lisp/mail/rmailedit.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985, 1994, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mail ;; Package: rmail === modified file 'lisp/mail/rmailkwd.el' --- lisp/mail/rmailkwd.el 2014-01-01 07:43:34 +0000 +++ lisp/mail/rmailkwd.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985, 1988, 1994, 2001-2014 Free Software Foundation, ;; Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mail ;; Package: rmail === modified file 'lisp/mail/rmailmm.el' --- lisp/mail/rmailmm.el 2014-01-02 22:30:32 +0000 +++ lisp/mail/rmailmm.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Alexander Pohoyda ;; Alex Schroeder -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mail ;; Package: rmail === modified file 'lisp/mail/rmailmsc.el' --- lisp/mail/rmailmsc.el 2014-01-01 07:43:34 +0000 +++ lisp/mail/rmailmsc.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mail ;; Package: rmail === modified file 'lisp/mail/rmailout.el' --- lisp/mail/rmailout.el 2014-01-01 07:43:34 +0000 +++ lisp/mail/rmailout.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985, 1987, 1993-1994, 2001-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mail ;; Package: rmail === modified file 'lisp/mail/rmailsort.el' --- lisp/mail/rmailsort.el 2014-01-01 07:43:34 +0000 +++ lisp/mail/rmailsort.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Masanobu UMEDA -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mail ;; Package: rmail === modified file 'lisp/mail/rmailsum.el' --- lisp/mail/rmailsum.el 2014-01-01 07:43:34 +0000 +++ lisp/mail/rmailsum.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985, 1993-1996, 2000-2014 Free Software Foundation, ;; Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mail ;; Package: rmail === modified file 'lisp/mail/sendmail.el' --- lisp/mail/sendmail.el 2014-01-06 06:25:30 +0000 +++ lisp/mail/sendmail.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1986, 1992-1996, 1998, 2000-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mail ;; This file is part of GNU Emacs. === modified file 'lisp/mail/supercite.el' --- lisp/mail/supercite.el 2014-01-22 01:54:10 +0000 +++ lisp/mail/supercite.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1993, 1997, 2001-2014 Free Software Foundation, Inc. ;; Author: 1993 Barry A. Warsaw -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: February 1993 ;; Keywords: mail, news === modified file 'lisp/mail/undigest.el' --- lisp/mail/undigest.el 2014-01-01 07:43:34 +0000 +++ lisp/mail/undigest.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1986, 1994, 1996, 2001-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mail ;; This file is part of GNU Emacs. === modified file 'lisp/mail/unrmail.el' --- lisp/mail/unrmail.el 2014-01-10 07:10:37 +0000 +++ lisp/mail/unrmail.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1992, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mail ;; This file is part of GNU Emacs. === modified file 'lisp/makesum.el' --- lisp/makesum.el 2014-01-01 07:43:34 +0000 +++ lisp/makesum.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: help ;; This file is part of GNU Emacs. === modified file 'lisp/man.el' --- lisp/man.el 2014-01-01 07:43:34 +0000 +++ lisp/man.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Foundation, Inc. ;; Author: Barry A. Warsaw -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: help ;; Adapted-By: ESR, pot === modified file 'lisp/menu-bar.el' --- lisp/menu-bar.el 2014-01-17 03:22:55 +0000 +++ lisp/menu-bar.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1993-1995, 2000-2014 Free Software Foundation, Inc. ;; Author: Richard M. Stallman -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal, mouse ;; Package: emacs === modified file 'lisp/misc.el' --- lisp/misc.el 2014-01-01 07:43:34 +0000 +++ lisp/misc.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1989, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: convenience ;; Package: emacs === modified file 'lisp/mouse.el' --- lisp/mouse.el 2014-01-30 17:42:48 +0000 +++ lisp/mouse.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1993-1995, 1999-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: hardware, mouse ;; Package: emacs === modified file 'lisp/msb.el' --- lisp/msb.el 2014-01-01 07:43:34 +0000 +++ lisp/msb.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1993-1995, 1997-2014 Free Software Foundation, Inc. ;; Author: Lars Lindberg -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 8 Oct 1993 ;; Lindberg's last update version: 3.34 ;; Keywords: mouse buffer menu === modified file 'lisp/net/ange-ftp.el' --- lisp/net/ange-ftp.el 2014-01-13 22:21:32 +0000 +++ lisp/net/ange-ftp.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Andy Norman (ange@hplb.hpl.hp.com) -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm ;; This file is part of GNU Emacs. === modified file 'lisp/net/browse-url.el' --- lisp/net/browse-url.el 2014-01-01 07:43:34 +0000 +++ lisp/net/browse-url.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1995-2014 Free Software Foundation, Inc. ;; Author: Denis Howe -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 03 Apr 1995 ;; Keywords: hypertext, hypermedia, mouse === modified file 'lisp/net/eudcb-mab.el' --- lisp/net/eudcb-mab.el 2014-01-01 07:43:34 +0000 +++ lisp/net/eudcb-mab.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2003-2014 Free Software Foundation, Inc. ;; Author: John Wiegley -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm ;; Package: eudc === modified file 'lisp/net/goto-addr.el' --- lisp/net/goto-addr.el 2014-01-01 07:43:34 +0000 +++ lisp/net/goto-addr.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1995, 2000-2014 Free Software Foundation, Inc. ;; Author: Eric Ding -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 15 Aug 1995 ;; Keywords: mh-e, www, mouse, mail === modified file 'lisp/net/ldap.el' --- lisp/net/ldap.el 2014-01-01 07:43:34 +0000 +++ lisp/net/ldap.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1998-2014 Free Software Foundation, Inc. ;; Author: Oscar Figueiredo -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: April 1998 ;; Keywords: comm === modified file 'lisp/net/telnet.el' --- lisp/net/telnet.el 2014-01-01 07:43:34 +0000 +++ lisp/net/telnet.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Foundation, Inc. ;; Author: William F. Schelter -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: unix, comm ;; This file is part of GNU Emacs. === modified file 'lisp/novice.el' --- lisp/novice.el 2014-01-01 07:43:34 +0000 +++ lisp/novice.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1987, 1994, 2001-2014 Free Software Foundation, ;; Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal, help ;; This file is part of GNU Emacs. === modified file 'lisp/obsolete/abbrevlist.el' --- lisp/obsolete/abbrevlist.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/abbrevlist.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1986, 1992, 2001-2014 Free Software Foundation, Inc. ;; Suggested by a previous version by Gildea. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: abbrev ;; Package: emacs ;; Obsolete-since: 24.1 === modified file 'lisp/obsolete/awk-mode.el' --- lisp/obsolete/awk-mode.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/awk-mode.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1988, 1994, 1996, 2000-2014 Free Software Foundation, ;; Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: unix, languages ;; Obsolete-since: 22.1 === modified file 'lisp/obsolete/bruce.el' --- lisp/obsolete/bruce.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/bruce.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Copyright (C) 1988, 1993, 1997, 2001-2014 Free Software Foundation, ;; Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: games ;; Created: Jan 1997 ;; Obsolete-since: 24.3 === modified file 'lisp/obsolete/fast-lock.el' --- lisp/obsolete/fast-lock.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/fast-lock.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1994-1998, 2001-2014 Free Software Foundation, Inc. ;; Author: Simon Marshall -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: faces files ;; Version: 3.14 ;; Obsolete-since: 22.1 === modified file 'lisp/obsolete/iso-acc.el' --- lisp/obsolete/iso-acc.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/iso-acc.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Johan Vromans -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: i18n ;; Obsolete-since: 22.1 === modified file 'lisp/obsolete/iso-insert.el' --- lisp/obsolete/iso-insert.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/iso-insert.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1987, 1994, 2001-2014 Free Software Foundation, Inc. ;; Author: Howard Gayle -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: i18n ;; Obsolete-since: 22.1 === modified file 'lisp/obsolete/iso-swed.el' --- lisp/obsolete/iso-swed.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/iso-swed.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1987, 2001-2014 Free Software Foundation, Inc. ;; Author: Howard Gayle -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: i18n ;; Obsolete-since: 22.1 === modified file 'lisp/obsolete/lazy-lock.el' --- lisp/obsolete/lazy-lock.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/lazy-lock.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1994-1998, 2001-2014 Free Software Foundation, Inc. ;; Author: Simon Marshall -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: faces files ;; Version: 2.11 ;; Obsolete-since: 22.1 === modified file 'lisp/obsolete/ledit.el' --- lisp/obsolete/ledit.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/ledit.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: languages ;; Obsolete-since: 24.3 === modified file 'lisp/obsolete/levents.el' --- lisp/obsolete/levents.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/levents.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1993, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: emulations ;; Obsolete-since: 23.2 === modified file 'lisp/obsolete/lucid.el' --- lisp/obsolete/lucid.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/lucid.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1993, 1995, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: emulations ;; Obsolete-since: 23.2 === modified file 'lisp/obsolete/mailpost.el' --- lisp/obsolete/mailpost.el 2012-08-15 16:29:11 +0000 +++ lisp/obsolete/mailpost.el 2014-02-10 01:34:22 +0000 @@ -6,7 +6,7 @@ ;; This file is part of GNU Emacs. ;; Author: Gary Delp -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 13 Jan 1986 ;; Keywords: mail ;; Obsolete-since: 24.3 === modified file 'lisp/obsolete/meese.el' --- lisp/obsolete/meese.el 2014-02-07 03:14:56 +0000 +++ lisp/obsolete/meese.el 2014-02-10 01:34:22 +0000 @@ -5,7 +5,7 @@ ;; This file is part of GNU Emacs. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: games ;; Obsolete-since: 24.4 === modified file 'lisp/obsolete/options.el' --- lisp/obsolete/options.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/options.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Obsolete-since: 22.1 ;; This file is part of GNU Emacs. === modified file 'lisp/obsolete/pc-mode.el' --- lisp/obsolete/pc-mode.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/pc-mode.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1995, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: emulations ;; Obsolete-since: 24.1 === modified file 'lisp/obsolete/rcompile.el' --- lisp/obsolete/rcompile.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/rcompile.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1993-1994, 2001-2014 Free Software Foundation, Inc. ;; Author: Alon Albert -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 1993 Oct 6 ;; Keywords: tools, processes ;; Obsolete-since: 24.4 === modified file 'lisp/obsolete/scribe.el' --- lisp/obsolete/scribe.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/scribe.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: William Sommerfeld ;; (according to ack.texi) -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: wp ;; Obsolete-since: 22.1 === modified file 'lisp/obsolete/spell.el' --- lisp/obsolete/spell.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/spell.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: wp, unix ;; Obsolete-since: 23.1 ;; (not in obsolete/ directory then, but all functions marked obsolete) === modified file 'lisp/obsolete/sup-mouse.el' --- lisp/obsolete/sup-mouse.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/sup-mouse.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1986, 2001-2014 Free Software Foundation, Inc. ;; Author: Wolfgang Rupprecht -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 21 Nov 1986 ;; Keywords: hardware ;; Obsolete-since: 24.4 === modified file 'lisp/obsolete/swedish.el' --- lisp/obsolete/swedish.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/swedish.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1988, 2001-2014 Free Software Foundation, Inc. ;; Author: Howard Gayle -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: i18n ;; Obsolete-since: 22.1 === modified file 'lisp/obsolete/terminal.el' --- lisp/obsolete/terminal.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/terminal.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Foundation, Inc. ;; Author: Richard Mlynarik -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Obsolete-since: 24.4 ;; Keywords: comm, terminals === modified file 'lisp/obsolete/yow.el' --- lisp/obsolete/yow.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/yow.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1993-1995, 2000-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Author: Richard Mlynarik ;; Keywords: games ;; Obsolete-since: 24.4 === modified file 'lisp/outline.el' --- lisp/outline.el 2014-01-01 07:43:34 +0000 +++ lisp/outline.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1986, 1993-1995, 1997, 2000-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: outlines ;; This file is part of GNU Emacs. === modified file 'lisp/paren.el' --- lisp/paren.el 2014-01-01 07:43:34 +0000 +++ lisp/paren.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1993, 1996, 2001-2014 Free Software Foundation, Inc. ;; Author: rms@gnu.org -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: languages, faces ;; This file is part of GNU Emacs. === modified file 'lisp/play/cookie1.el' --- lisp/play/cookie1.el 2014-01-01 07:43:34 +0000 +++ lisp/play/cookie1.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1993, 2001-2014 Free Software Foundation, Inc. ;; Author: Eric S. Raymond -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: games, extensions ;; Created: Mon Mar 22 17:06:26 1993 === modified file 'lisp/play/dissociate.el' --- lisp/play/dissociate.el 2014-01-01 07:43:34 +0000 +++ lisp/play/dissociate.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: games ;; This file is part of GNU Emacs. === modified file 'lisp/play/doctor.el' --- lisp/play/doctor.el 2014-01-01 07:43:34 +0000 +++ lisp/play/doctor.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985, 1987, 1994, 1996, 2000-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: games ;; This file is part of GNU Emacs. === modified file 'lisp/play/gomoku.el' --- lisp/play/gomoku.el 2014-01-01 07:43:34 +0000 +++ lisp/play/gomoku.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Philippe Schnoebelen -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Adapted-By: ESR, Daniel Pfeiffer ;; Keywords: games === modified file 'lisp/play/hanoi.el' --- lisp/play/hanoi.el 2012-07-11 23:13:41 +0000 +++ lisp/play/hanoi.el 2014-02-10 01:34:22 +0000 @@ -1,7 +1,7 @@ ;;; hanoi.el --- towers of hanoi in Emacs ;; Author: Damon Anton Permezel -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: games ; Author (a) 1985, Damon Anton Permezel === modified file 'lisp/play/life.el' --- lisp/play/life.el 2014-01-01 07:43:34 +0000 +++ lisp/play/life.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1988, 2001-2014 Free Software Foundation, Inc. ;; Author: Kyle Jones -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: games ;; This file is part of GNU Emacs. === modified file 'lisp/play/spook.el' --- lisp/play/spook.el 2014-01-01 07:43:34 +0000 +++ lisp/play/spook.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1988, 1993, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: games ;; Created: May 1987 === modified file 'lisp/play/studly.el' --- lisp/play/studly.el 2011-01-15 23:16:57 +0000 +++ lisp/play/studly.el 2014-02-10 01:34:22 +0000 @@ -5,7 +5,7 @@ ;; This file is part of GNU Emacs. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: games ;;; Commentary: === modified file 'lisp/progmodes/asm-mode.el' --- lisp/progmodes/asm-mode.el 2014-01-01 07:43:34 +0000 +++ lisp/progmodes/asm-mode.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1991, 2001-2014 Free Software Foundation, Inc. ;; Author: Eric S. Raymond -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: tools, languages ;; This file is part of GNU Emacs. === modified file 'lisp/progmodes/cc-awk.el' --- lisp/progmodes/cc-awk.el 2014-01-01 07:43:34 +0000 +++ lisp/progmodes/cc-awk.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Alan Mackenzie (originally based on awk-mode.el) -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: AWK, cc-mode, unix, languages ;; Package: cc-mode === modified file 'lisp/progmodes/compile.el' --- lisp/progmodes/compile.el 2014-01-01 07:43:34 +0000 +++ lisp/progmodes/compile.el 2014-02-10 01:34:22 +0000 @@ -5,7 +5,7 @@ ;; Authors: Roland McGrath , ;; Daniel Pfeiffer -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: tools, processes ;; This file is part of GNU Emacs. === modified file 'lisp/progmodes/ebrowse.el' --- lisp/progmodes/ebrowse.el 2014-01-01 07:43:34 +0000 +++ lisp/progmodes/ebrowse.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1992-2014 Free Software Foundation, Inc. ;; Author: Gerd Moellmann -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: C++ tags tools ;; This file is part of GNU Emacs. === modified file 'lisp/progmodes/etags.el' --- lisp/progmodes/etags.el 2014-01-01 07:43:34 +0000 +++ lisp/progmodes/etags.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Software Foundation, Inc. ;; Author: Roland McGrath -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: tools ;; This file is part of GNU Emacs. === modified file 'lisp/progmodes/gdb-mi.el' --- lisp/progmodes/gdb-mi.el 2014-01-01 07:43:34 +0000 +++ lisp/progmodes/gdb-mi.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2007-2014 Free Software Foundation, Inc. ;; Author: Nick Roberts -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: unix, tools ;; This file is part of GNU Emacs. === modified file 'lisp/progmodes/grep.el' --- lisp/progmodes/grep.el 2014-01-01 07:43:34 +0000 +++ lisp/progmodes/grep.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Foundation, Inc. ;; Author: Roland McGrath -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: tools, processes ;; This file is part of GNU Emacs. === modified file 'lisp/progmodes/gud.el' --- lisp/progmodes/gud.el 2014-01-16 06:24:06 +0000 +++ lisp/progmodes/gud.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Eric S. Raymond -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: unix, tools ;; This file is part of GNU Emacs. === modified file 'lisp/progmodes/hideif.el' --- lisp/progmodes/hideif.el 2014-01-28 07:02:34 +0000 +++ lisp/progmodes/hideif.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Brian Marick ;; Daniel LaLiberte -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: c, outlines ;; This file is part of GNU Emacs. === modified file 'lisp/progmodes/make-mode.el' --- lisp/progmodes/make-mode.el 2014-01-01 07:43:34 +0000 +++ lisp/progmodes/make-mode.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Thomas Neumann ;; Eric S. Raymond -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Adapted-By: ESR ;; Keywords: unix, tools === modified file 'lisp/progmodes/modula2.el' --- lisp/progmodes/modula2.el 2012-04-09 13:05:48 +0000 +++ lisp/progmodes/modula2.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Author: Michael Schmidt ;; Tom Perrine -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: languages ;; This file is part of GNU Emacs. === modified file 'lisp/progmodes/octave.el' --- lisp/progmodes/octave.el 2014-01-12 04:00:03 +0000 +++ lisp/progmodes/octave.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Kurt Hornik ;; John Eaton -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: languages ;; This file is part of GNU Emacs. === modified file 'lisp/progmodes/perl-mode.el' --- lisp/progmodes/perl-mode.el 2014-01-01 07:43:34 +0000 +++ lisp/progmodes/perl-mode.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1990, 1994, 2001-2014 Free Software Foundation, Inc. ;; Author: William F. Mann -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Adapted-By: ESR ;; Keywords: languages === modified file 'lisp/progmodes/prog-mode.el' --- lisp/progmodes/prog-mode.el 2014-01-01 07:43:34 +0000 +++ lisp/progmodes/prog-mode.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 2013-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/progmodes/python.el' --- lisp/progmodes/python.el 2014-02-04 19:35:52 +0000 +++ lisp/progmodes/python.el 2014-02-10 01:34:22 +0000 @@ -5,7 +5,7 @@ ;; Author: Fabián E. Gallina ;; URL: https://github.com/fgallina/python.el ;; Version: 0.24.2 -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: Jul 2010 ;; Keywords: languages === modified file 'lisp/progmodes/sh-script.el' --- lisp/progmodes/sh-script.el 2014-01-21 23:42:59 +0000 +++ lisp/progmodes/sh-script.el 2014-02-10 01:34:22 +0000 @@ -5,7 +5,7 @@ ;; Author: Daniel Pfeiffer ;; Version: 2.0f -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: languages, unix ;; This file is part of GNU Emacs. === modified file 'lisp/progmodes/tcl.el' --- lisp/progmodes/tcl.el 2014-01-01 07:43:34 +0000 +++ lisp/progmodes/tcl.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1994, 1998-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Author: Tom Tromey ;; Chris Lindblad ;; Keywords: languages tcl modes === modified file 'lisp/progmodes/xscheme.el' --- lisp/progmodes/xscheme.el 2014-01-01 07:43:34 +0000 +++ lisp/progmodes/xscheme.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1986-1987, 1989-1990, 2001-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: languages, lisp ;; This file is part of GNU Emacs. === modified file 'lisp/register.el' --- lisp/register.el 2014-02-03 07:56:44 +0000 +++ lisp/register.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985, 1993-1994, 2001-2014 Free Software Foundation, ;; Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/replace.el' --- lisp/replace.el 2014-02-08 03:55:27 +0000 +++ lisp/replace.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1987, 1992, 1994, 1996-1997, 2000-2014 Free ;; Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Package: emacs ;; This file is part of GNU Emacs. === modified file 'lisp/reposition.el' --- lisp/reposition.el 2014-01-01 07:43:34 +0000 +++ lisp/reposition.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Michael D. Ernst ;; Created: Jan 1991 -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; This file is part of GNU Emacs. === modified file 'lisp/rot13.el' --- lisp/rot13.el 2014-01-01 07:43:34 +0000 +++ lisp/rot13.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1988, 2001-2014 Free Software Foundation, Inc. ;; Author: Howard Gayle -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; This file is part of GNU Emacs. === modified file 'lisp/savehist.el' --- lisp/savehist.el 2014-01-01 07:43:34 +0000 +++ lisp/savehist.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1997, 2005-2014 Free Software Foundation, Inc. ;; Author: Hrvoje Niksic -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: minibuffer ;; Version: 24 === modified file 'lisp/saveplace.el' --- lisp/saveplace.el 2014-01-27 02:02:28 +0000 +++ lisp/saveplace.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1993-1994, 2001-2014 Free Software Foundation, Inc. ;; Author: Karl Fogel -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: July, 1993 ;; Keywords: bookmarks, placeholders === modified file 'lisp/scroll-bar.el' --- lisp/scroll-bar.el 2014-01-01 07:43:34 +0000 +++ lisp/scroll-bar.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1993-1995, 1999-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: hardware ;; Package: emacs === modified file 'lisp/scroll-lock.el' --- lisp/scroll-lock.el 2014-01-01 07:43:34 +0000 +++ lisp/scroll-lock.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2005-2014 Free Software Foundation, Inc. ;; Author: Ralf Angeli -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 2005-06-18 ;; This file is part of GNU Emacs. === modified file 'lisp/select.el' --- lisp/select.el 2014-01-01 07:43:34 +0000 +++ lisp/select.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1993-1994, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; This file is part of GNU Emacs. === modified file 'lisp/server.el' --- lisp/server.el 2014-01-01 07:43:34 +0000 +++ lisp/server.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: William Sommerfeld -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: processes ;; Changes by peck@sun.com and by rms. === modified file 'lisp/shell.el' --- lisp/shell.el 2014-01-01 07:43:34 +0000 +++ lisp/shell.el 2014-02-10 01:34:22 +0000 @@ -5,7 +5,7 @@ ;; Author: Olin Shivers ;; Simon Marshall -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: processes ;; This file is part of GNU Emacs. === modified file 'lisp/simple.el' --- lisp/simple.el 2014-02-08 13:13:46 +0000 +++ lisp/simple.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985-1987, 1993-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/skeleton.el' --- lisp/skeleton.el 2014-01-01 07:43:34 +0000 +++ lisp/skeleton.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1993-1996, 2001-2014 Free Software Foundation, Inc. ;; Author: Daniel Pfeiffer -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: extensions, abbrev, languages, tools ;; This file is part of GNU Emacs. === modified file 'lisp/sort.el' --- lisp/sort.el 2014-01-31 09:41:54 +0000 +++ lisp/sort.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Foundation, Inc. ;; Author: Howie Kaye -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: unix ;; This file is part of GNU Emacs. === modified file 'lisp/soundex.el' --- lisp/soundex.el 2014-01-01 07:43:34 +0000 +++ lisp/soundex.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1993, 2001-2014 Free Software Foundation, Inc. ;; Author: Christian Plaunt -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: matching ;; Created: Sat May 15 14:48:18 1993 === modified file 'lisp/startup.el' --- lisp/startup.el 2014-01-31 01:58:51 +0000 +++ lisp/startup.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1986, 1992, 1994-2014 Free Software Foundation, ;; Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/strokes.el' --- lisp/strokes.el 2014-01-27 02:02:28 +0000 +++ lisp/strokes.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1997, 2000-2014 Free Software Foundation, Inc. ;; Author: David Bakhash -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: lisp, mouse, extensions ;; This file is part of GNU Emacs. === modified file 'lisp/subr.el' --- lisp/subr.el 2014-02-09 02:13:23 +0000 +++ lisp/subr.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1986, 1992, 1994-1995, 1999-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/t-mouse.el' --- lisp/t-mouse.el 2014-01-01 07:43:34 +0000 +++ lisp/t-mouse.el 2014-02-10 01:34:22 +0000 @@ -1,7 +1,7 @@ ;;; t-mouse.el --- mouse support within the text terminal ;; Author: Nick Roberts -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: mouse gpm linux ;; Copyright (C) 1994-1995, 1998, 2006-2014 Free Software Foundation, === modified file 'lisp/tabify.el' --- lisp/tabify.el 2014-01-01 07:43:34 +0000 +++ lisp/tabify.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985, 1994, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Package: emacs ;; This file is part of GNU Emacs. === modified file 'lisp/talk.el' --- lisp/talk.el 2014-01-01 07:43:34 +0000 +++ lisp/talk.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1995, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: comm, frames ;; This file is part of GNU Emacs. === modified file 'lisp/tar-mode.el' --- lisp/tar-mode.el 2014-01-01 07:43:34 +0000 +++ lisp/tar-mode.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1990-1991, 1993-2014 Free Software Foundation, Inc. ;; Author: Jamie Zawinski -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Created: 04 Apr 1990 ;; Keywords: unix === modified file 'lisp/term/common-win.el' --- lisp/term/common-win.el 2014-01-18 15:11:03 +0000 +++ lisp/term/common-win.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1993-1994, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: terminals ;; This file is part of GNU Emacs. === modified file 'lisp/term/pc-win.el' --- lisp/term/pc-win.el 2014-01-01 07:43:34 +0000 +++ lisp/term/pc-win.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Foundation, Inc. ;; Author: Morten Welinder -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; This file is part of GNU Emacs. === modified file 'lisp/term/tty-colors.el' --- lisp/term/tty-colors.el 2014-01-01 07:43:34 +0000 +++ lisp/term/tty-colors.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1999-2014 Free Software Foundation, Inc. ;; Author: Eli Zaretskii -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: terminals, faces ;; This file is part of GNU Emacs. === modified file 'lisp/textmodes/bib-mode.el' --- lisp/textmodes/bib-mode.el 2014-01-01 07:43:34 +0000 +++ lisp/textmodes/bib-mode.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Henry Kautz ;; (according to authors.el) -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: bib ;; This file is part of GNU Emacs. === modified file 'lisp/textmodes/fill.el' --- lisp/textmodes/fill.el 2014-01-28 03:00:20 +0000 +++ lisp/textmodes/fill.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1986, 1992, 1994-1997, 1999, 2001-2014 Free ;; Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: wp ;; Package: emacs === modified file 'lisp/textmodes/flyspell.el' --- lisp/textmodes/flyspell.el 2014-01-01 07:43:34 +0000 +++ lisp/textmodes/flyspell.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1998, 2000-2014 Free Software Foundation, Inc. ;; Author: Manuel Serrano -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: convenience ;; This file is part of GNU Emacs. === modified file 'lisp/textmodes/makeinfo.el' --- lisp/textmodes/makeinfo.el 2014-01-01 07:43:34 +0000 +++ lisp/textmodes/makeinfo.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1991, 1993, 2001-2014 Free Software Foundation, Inc. ;; Author: Robert J. Chassell -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: docs convenience ;; This file is part of GNU Emacs. === modified file 'lisp/textmodes/nroff-mode.el' --- lisp/textmodes/nroff-mode.el 2014-01-01 07:43:34 +0000 +++ lisp/textmodes/nroff-mode.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1986, 1994-1995, 1997, 2001-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: wp ;; This file is part of GNU Emacs. === modified file 'lisp/textmodes/page.el' --- lisp/textmodes/page.el 2014-01-01 07:43:34 +0000 +++ lisp/textmodes/page.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: wp convenience ;; Package: emacs === modified file 'lisp/textmodes/paragraphs.el' --- lisp/textmodes/paragraphs.el 2014-01-08 19:16:10 +0000 +++ lisp/textmodes/paragraphs.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1987, 1991, 1994-1997, 1999-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: wp ;; Package: emacs === modified file 'lisp/textmodes/picture.el' --- lisp/textmodes/picture.el 2014-02-03 00:40:49 +0000 +++ lisp/textmodes/picture.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985, 1994, 2001-2014 Free Software Foundation, Inc. ;; Author: K. Shane Hartman -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: convenience wp ;; This file is part of GNU Emacs. === modified file 'lisp/textmodes/refbib.el' --- lisp/textmodes/refbib.el 2014-01-01 07:43:34 +0000 +++ lisp/textmodes/refbib.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1989, 2001-2014 Free Software Foundation, Inc. ;; Author: Henry Kautz -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: bib, tex ;; This file is part of GNU Emacs. === modified file 'lisp/textmodes/sgml-mode.el' --- lisp/textmodes/sgml-mode.el 2014-01-01 07:43:34 +0000 +++ lisp/textmodes/sgml-mode.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Foundation, Inc. ;; Author: James Clark -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Adapted-By: ESR, Daniel Pfeiffer , ;; F.Potorti@cnuce.cnr.it ;; Keywords: wp, hypermedia, comm, languages === modified file 'lisp/textmodes/tex-mode.el' --- lisp/textmodes/tex-mode.el 2014-01-10 07:10:37 +0000 +++ lisp/textmodes/tex-mode.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1986, 1989, 1992, 1994-1999, 2001-2014 Free ;; Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: tex ;; Contributions over the years by William F. Schelter, Dick King, === modified file 'lisp/textmodes/texinfo.el' --- lisp/textmodes/texinfo.el 2014-01-01 07:43:34 +0000 +++ lisp/textmodes/texinfo.el 2014-02-10 01:34:22 +0000 @@ -5,7 +5,7 @@ ;; Author: Robert J. Chassell ;; Date: [See date below for texinfo-version] -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: maint, tex, docs ;; This file is part of GNU Emacs. === modified file 'lisp/textmodes/text-mode.el' --- lisp/textmodes/text-mode.el 2014-01-01 07:43:34 +0000 +++ lisp/textmodes/text-mode.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985, 1992, 1994, 2001-2014 Free Software Foundation, ;; Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: wp ;; Package: emacs === modified file 'lisp/textmodes/underline.el' --- lisp/textmodes/underline.el 2014-01-01 07:43:34 +0000 +++ lisp/textmodes/underline.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: wp ;; This file is part of GNU Emacs. === modified file 'lisp/thingatpt.el' --- lisp/thingatpt.el 2014-01-01 07:43:34 +0000 +++ lisp/thingatpt.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1991-1998, 2000-2014 Free Software Foundation, Inc. ;; Author: Mike Williams -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: extensions, matching, mouse ;; Created: Thu Mar 28 13:48:23 1991 === modified file 'lisp/thumbs.el' --- lisp/thumbs.el 2014-01-01 07:43:34 +0000 +++ lisp/thumbs.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2004-2014 Free Software Foundation, Inc. ;; Author: Jean-Philippe Theberge -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: Multimedia ;; This file is part of GNU Emacs. === modified file 'lisp/time.el' --- lisp/time.el 2014-01-01 07:43:34 +0000 +++ lisp/time.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1987, 1993-1994, 1996, 2000-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; This file is part of GNU Emacs. === modified file 'lisp/tmm.el' --- lisp/tmm.el 2014-01-01 07:43:34 +0000 +++ lisp/tmm.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1994-1996, 2000-2014 Free Software Foundation, Inc. ;; Author: Ilya Zakharevich -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: convenience ;; This file is part of GNU Emacs. === modified file 'lisp/tutorial.el' --- lisp/tutorial.el 2014-01-01 07:43:34 +0000 +++ lisp/tutorial.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 2006-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: help, internal ;; Package: emacs === modified file 'lisp/uniquify.el' --- lisp/uniquify.el 2014-01-01 07:43:34 +0000 +++ lisp/uniquify.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Dick King -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: files ;; Created: 15 May 86 ;; Package: emacs === modified file 'lisp/userlock.el' --- lisp/userlock.el 2014-01-01 07:43:34 +0000 +++ lisp/userlock.el 2014-02-10 01:34:22 +0000 @@ -2,7 +2,7 @@ ;; Copyright (C) 1985-1986, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/vc/add-log.el' --- lisp/vc/add-log.el 2014-01-01 07:43:34 +0000 +++ lisp/vc/add-log.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985-1986, 1988, 1993-1994, 1997-1998, 2000-2014 Free ;; Software Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: vc tools ;; This file is part of GNU Emacs. === modified file 'lisp/vc/compare-w.el' --- lisp/vc/compare-w.el 2014-01-01 07:43:34 +0000 +++ lisp/vc/compare-w.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1986, 1989, 1993, 1997, 2001-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: convenience files vc ;; This file is part of GNU Emacs. === modified file 'lisp/vc/diff.el' --- lisp/vc/diff.el 2014-01-01 07:43:34 +0000 +++ lisp/vc/diff.el 2014-02-10 01:34:22 +0000 @@ -5,7 +5,7 @@ ;; Author: Frank Bresz ;; (according to authors.el) -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: unix, vc, tools ;; This file is part of GNU Emacs. === modified file 'lisp/vc/vc-annotate.el' --- lisp/vc/vc-annotate.el 2014-01-01 07:43:34 +0000 +++ lisp/vc/vc-annotate.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1997-1998, 2000-2014 Free Software Foundation, Inc. ;; Author: Martin Lorentzson -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: vc tools ;; Package: vc === modified file 'lisp/vc/vc-bzr.el' --- lisp/vc/vc-bzr.el 2014-01-01 07:43:34 +0000 +++ lisp/vc/vc-bzr.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Author: Dave Love ;; Riccardo Murri -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: vc tools ;; Created: Sept 2006 ;; Package: vc === modified file 'lisp/vc/vc-hg.el' --- lisp/vc/vc-hg.el 2014-01-01 07:43:34 +0000 +++ lisp/vc/vc-hg.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2006-2014 Free Software Foundation, Inc. ;; Author: Ivan Kanis -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: vc tools ;; Package: vc === modified file 'lisp/vcursor.el' --- lisp/vcursor.el 2014-01-01 07:43:34 +0000 +++ lisp/vcursor.el 2014-02-10 01:34:22 +0000 @@ -4,7 +4,7 @@ ;; Inc. ;; Author: Peter Stephenson -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: virtual cursor, convenience ;; This file is part of GNU Emacs. === modified file 'lisp/version.el' --- lisp/version.el 2014-01-22 21:14:34 +0000 +++ lisp/version.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985, 1992, 1994-1995, 1999-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/vt100-led.el' --- lisp/vt100-led.el 2014-01-01 07:43:34 +0000 +++ lisp/vt100-led.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1988, 2001-2014 Free Software Foundation, Inc. ;; Author: Howard Gayle -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: hardware ;; This file is part of GNU Emacs. === modified file 'lisp/wid-edit.el' --- lisp/wid-edit.el 2014-01-08 19:16:10 +0000 +++ lisp/wid-edit.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1996-1997, 1999-2014 Free Software Foundation, Inc. ;; ;; Author: Per Abrahamsen -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: extensions ;; Package: emacs === modified file 'lisp/window.el' --- lisp/window.el 2014-01-28 09:45:37 +0000 +++ lisp/window.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 1985, 1989, 1992-1994, 2000-2014 Free Software ;; Foundation, Inc. -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: internal ;; Package: emacs === modified file 'lisp/woman.el' --- lisp/woman.el 2014-01-25 19:15:42 +0000 +++ lisp/woman.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2000-2014 Free Software Foundation, Inc. ;; Author: Francis J. Wright -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: help, unix ;; Adapted-By: Eli Zaretskii ;; Version: 0.551 === modified file 'lisp/x-dnd.el' --- lisp/x-dnd.el 2014-01-01 07:43:34 +0000 +++ lisp/x-dnd.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2004-2014 Free Software Foundation, Inc. ;; Author: Jan Djärv -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; Keywords: window, drag, drop ;; Package: emacs === modified file 'test/automated/vc-bzr.el' --- test/automated/vc-bzr.el 2014-01-22 01:54:10 +0000 +++ test/automated/vc-bzr.el 2014-02-10 01:34:22 +0000 @@ -3,7 +3,7 @@ ;; Copyright (C) 2011-2014 Free Software Foundation, Inc. ;; Author: Glenn Morris -;; Maintainer: FSF +;; Maintainer: emacs-devel@gnu.org ;; This file is part of GNU Emacs. ------------------------------------------------------------ revno: 116378 committer: Alan Mackenzie branch nick: trunk timestamp: Sun 2014-02-09 12:34:25 +0000 message: Fix c-invalidate-state-cache on narrowed buffers. progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out): Widen when setting and clearing the CPP delimiter properties. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-02-09 06:01:33 +0000 +++ lisp/ChangeLog 2014-02-09 12:34:25 +0000 @@ -1,3 +1,9 @@ +2014-02-09 Alan Mackenzie + + Fix c-invalidate-state-cache on narrowed buffers. + * progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out): + Widen when setting and clearing the CPP delimiter properties. + 2014-02-09 Lars Ingebrigtsen * help.el (describe-bindings): Doc fix (bug#9888). === modified file 'lisp/progmodes/cc-defs.el' --- lisp/progmodes/cc-defs.el 2014-02-02 10:25:29 +0000 +++ lisp/progmodes/cc-defs.el 2014-02-09 12:34:25 +0000 @@ -1293,10 +1293,14 @@ ;; suppressed. `(unwind-protect (c-save-buffer-state () - (c-clear-cpp-delimiters ,beg ,end) + (save-restriction + (widen) + (c-clear-cpp-delimiters ,beg ,end)) ,`(c-with-cpps-commented-out ,@forms)) (c-save-buffer-state () - (c-set-cpp-delimiters ,beg ,end)))) + (save-restriction + (widen) + (c-set-cpp-delimiters ,beg ,end))))) (defsubst c-intersect-lists (list alist) ;; return the element of ALIST that matches the first element found ------------------------------------------------------------ revno: 116377 committer: Glenn Morris branch nick: trunk timestamp: Sun 2014-02-09 06:23:00 -0500 message: Auto-commit of loaddefs files. diff: === modified file 'lisp/dired.el' --- lisp/dired.el 2014-02-09 02:19:15 +0000 +++ lisp/dired.el 2014-02-09 11:23:00 +0000 @@ -3859,7 +3859,7 @@ ;;; Start of automatically extracted autoloads. -;;;### (autoloads nil "dired-aux" "dired-aux.el" "8861a67d8b72a1110007fba0be161c86") +;;;### (autoloads nil "dired-aux" "dired-aux.el" "332d4c099a8b7d64df3fa7176a6e2a61") ;;; Generated autoloads from dired-aux.el (autoload 'dired-diff "dired-aux" "\ ------------------------------------------------------------ revno: 116376 fixes bug: http://debbugs.gnu.org/9476 committer: Lars Ingebrigtsen branch nick: trunk timestamp: Sat 2014-02-08 22:32:30 -0800 message: * cmds.c (Fself_insert_command): Output a clearer error message on negative repetitions. diff: === modified file 'src/ChangeLog' --- src/ChangeLog 2014-02-09 01:48:47 +0000 +++ src/ChangeLog 2014-02-09 06:32:30 +0000 @@ -1,5 +1,8 @@ 2014-02-09 Lars Ingebrigtsen + * cmds.c (Fself_insert_command): Output a clearer error message on + negative repetitions (bug#9476). + * macros.c (Fexecute_kbd_macro): Doc fix (bug#14206). 2014-02-08 Lars Ingebrigtsen === modified file 'src/cmds.c' --- src/cmds.c 2014-01-01 07:43:34 +0000 +++ src/cmds.c 2014-02-09 06:32:30 +0000 @@ -268,6 +268,7 @@ DEFUN ("self-insert-command", Fself_insert_command, Sself_insert_command, 1, 1, "p", doc: /* Insert the character you type. Whichever character you type to run this command is inserted. +The numeric prefix argument N says how many times to repeat the insertion. Before insertion, `expand-abbrev' is executed if the inserted character does not have word syntax and the previous character in the buffer does. After insertion, the value of `auto-fill-function' is called if the @@ -276,7 +277,11 @@ (Lisp_Object n) { bool remove_boundary = 1; - CHECK_NATNUM (n); + CHECK_NUMBER (n); + + if (XFASTINT (n) < 1) + error ("Repetition argument is %d, but must be higher than 0.", + XFASTINT (n)); if (!EQ (Vthis_command, KVAR (current_kboard, Vlast_command))) nonundocount = 0;