mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-24 06:20:43 -08:00
More small authors.el updates
* admin/authors.el (authors-aliases): Fix recent addition. (authors-obsolete-files-regexps, authors-no-scan-regexps) (authors-ignored-files, authors-valid-file-names) (authors-renamed-files-alist): Additions. ; * lisp/vc/pcvs.el, test/lisp/emacs-lisp/checkdoc-tests.el: ; Fix Author headers. ; * ChangeLog.2: Fixes.
This commit is contained in:
parent
0cd94b8a03
commit
a203e717eb
4 changed files with 37 additions and 17 deletions
|
|
@ -13551,7 +13551,7 @@
|
||||||
to window primitives (e.g. window-start) with a GROUP argument by calls to
|
to window primitives (e.g. window-start) with a GROUP argument by calls to
|
||||||
new functions (e.g. window-group-start).
|
new functions (e.g. window-group-start).
|
||||||
|
|
||||||
* lisp/ispell.el (ispell-command-loop): Replace call to
|
* lisp/textmodes/ispell.el (ispell-command-loop): Replace call to
|
||||||
pos-visible-in-window-p with pos-visible-in-window-group-p.
|
pos-visible-in-window-p with pos-visible-in-window-group-p.
|
||||||
|
|
||||||
* lisp/window.el (window-group-start, window-group-end)
|
* lisp/window.el (window-group-start, window-group-end)
|
||||||
|
|
@ -17568,7 +17568,7 @@
|
||||||
|
|
||||||
2015-11-09 Michael Sperber <mike@xemacs.org>
|
2015-11-09 Michael Sperber <mike@xemacs.org>
|
||||||
|
|
||||||
* lisp/gnus-sum.el (gnus-summary-backend-map): Bind B-backspace to
|
* lisp/gnus/gnus-sum.el (gnus-summary-backend-map): Bind B-backspace to
|
||||||
`gnus-summary-delete-article` in a way that also works on XEmacs.
|
`gnus-summary-delete-article` in a way that also works on XEmacs.
|
||||||
|
|
||||||
2015-11-08 Simen Heggestøyl <simenheg@gmail.com>
|
2015-11-08 Simen Heggestøyl <simenheg@gmail.com>
|
||||||
|
|
@ -26978,7 +26978,7 @@
|
||||||
both cases. This has been regularized. Error signaling behavior
|
both cases. This has been regularized. Error signaling behavior
|
||||||
has been explicitly added to the doc string.
|
has been explicitly added to the doc string.
|
||||||
|
|
||||||
* lisp/cl-extra.el (cl-subseq): Defers to (seq-subseq) and is
|
* lisp/emacs-lisp/cl-extra.el (cl-subseq): Defers to (seq-subseq) and is
|
||||||
therefore also impacted by this change. Update the doc string
|
therefore also impacted by this change. Update the doc string
|
||||||
to reflect this.
|
to reflect this.
|
||||||
|
|
||||||
|
|
@ -28839,7 +28839,7 @@
|
||||||
|
|
||||||
2015-06-29 Wolfgang Jenkner <wjenkner@inode.at>
|
2015-06-29 Wolfgang Jenkner <wjenkner@inode.at>
|
||||||
|
|
||||||
* lisp/calc-store.el (calc-insert-permanent-variable): Heed case.
|
* lisp/calc/calc-store.el (calc-insert-permanent-variable): Heed case.
|
||||||
Otherwise `s p' of f and F will stomp on each other's value.
|
Otherwise `s p' of f and F will stomp on each other's value.
|
||||||
(Bug#20916)
|
(Bug#20916)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,7 @@ files.")
|
||||||
("François Pinard" "Francois Pinard")
|
("François Pinard" "Francois Pinard")
|
||||||
("Francesco Potortì" "Francesco Potorti" "Francesco Potorti`")
|
("Francesco Potortì" "Francesco Potorti" "Francesco Potorti`")
|
||||||
("Frederic Pierresteguy" "Fred Pierresteguy")
|
("Frederic Pierresteguy" "Fred Pierresteguy")
|
||||||
(nil "FSF")
|
(nil "^FSF")
|
||||||
("Gerd Möllmann" "Gerd Moellmann")
|
("Gerd Möllmann" "Gerd Moellmann")
|
||||||
("Hallvard B. Furuseth" "Hallvard B Furuseth" "Hallvard Furuseth")
|
("Hallvard B. Furuseth" "Hallvard B Furuseth" "Hallvard Furuseth")
|
||||||
("Hrvoje Nikšić" "Hrvoje Niksic")
|
("Hrvoje Nikšić" "Hrvoje Niksic")
|
||||||
|
|
@ -262,7 +262,11 @@ If REALNAME is nil, ignore that author.")
|
||||||
"\\.\\(bzr\\|cvs\\|git\\)ignore$" ; obsolete or uninteresting
|
"\\.\\(bzr\\|cvs\\|git\\)ignore$" ; obsolete or uninteresting
|
||||||
"\\.arch-inventory$"
|
"\\.arch-inventory$"
|
||||||
"ChangeLog\\(\\.[0-9]+\\)?\\'"
|
"ChangeLog\\(\\.[0-9]+\\)?\\'"
|
||||||
"automated/data/" ; not interesting
|
"\\(automated\\|test\\)/data/" ; not interesting
|
||||||
|
"test/etags/"
|
||||||
|
"indent/"
|
||||||
|
"-resources/"
|
||||||
|
"admin/unidata/[BINSU]"
|
||||||
;; TODO lib/? Matches other things?
|
;; TODO lib/? Matches other things?
|
||||||
"build-aux/" "m4/" "Emacs.xcodeproj" "mapfiles" "\\.map\\'"
|
"build-aux/" "m4/" "Emacs.xcodeproj" "mapfiles" "\\.map\\'"
|
||||||
"preferences\\.\\(nib\\|gorm\\)"
|
"preferences\\.\\(nib\\|gorm\\)"
|
||||||
|
|
@ -274,7 +278,8 @@ Changes to files matching one of the regexps in this list are not listed.")
|
||||||
|
|
||||||
(defconst authors-no-scan-regexps
|
(defconst authors-no-scan-regexps
|
||||||
'("etc/nxml/"
|
'("etc/nxml/"
|
||||||
"automated/data/")
|
"test/data/"
|
||||||
|
"test/.*-resources/")
|
||||||
"Lists of regexps matching files not to scan for authorship.")
|
"Lists of regexps matching files not to scan for authorship.")
|
||||||
|
|
||||||
(defconst authors-ignored-files
|
(defconst authors-ignored-files
|
||||||
|
|
@ -389,6 +394,7 @@ Changes to files matching one of the regexps in this list are not listed.")
|
||||||
"admin/unidata/makefile.w32-in"
|
"admin/unidata/makefile.w32-in"
|
||||||
"unidata/makefile.w32-in"
|
"unidata/makefile.w32-in"
|
||||||
"lib/makefile.w32-in"
|
"lib/makefile.w32-in"
|
||||||
|
"lib-src/makefile.w32-in"
|
||||||
"leim/makefile.w32-in"
|
"leim/makefile.w32-in"
|
||||||
"lisp/makefile.w32-in"
|
"lisp/makefile.w32-in"
|
||||||
"src/makefile.w32-in"
|
"src/makefile.w32-in"
|
||||||
|
|
@ -402,12 +408,13 @@ Changes to files matching one of the regexps in this list are not listed.")
|
||||||
"src/paths.h"
|
"src/paths.h"
|
||||||
"envadd.bat"
|
"envadd.bat"
|
||||||
"multi-install-info.bat"
|
"multi-install-info.bat"
|
||||||
"INSTALL.OLD"
|
"INSTALL.OLD" "nt/INSTALL.OLD"
|
||||||
"nt/src/paths.h"
|
"nt/src/paths.h"
|
||||||
"nmake.defs"
|
"nmake.defs"
|
||||||
"gmake.defs"
|
"gmake.defs"
|
||||||
"zipdist.bat"
|
"zipdist.bat"
|
||||||
"nt/makefile.w32-in"
|
"nt/makefile.w32-in"
|
||||||
|
"nt/subdirs.el"
|
||||||
"config.nt"
|
"config.nt"
|
||||||
"nextstep/WISHLIST"
|
"nextstep/WISHLIST"
|
||||||
)
|
)
|
||||||
|
|
@ -653,7 +660,9 @@ Changes to files in this list are not listed.")
|
||||||
"configure" "config.h"
|
"configure" "config.h"
|
||||||
"is_exec.c" "sigaction.c"
|
"is_exec.c" "sigaction.c"
|
||||||
;; nt/
|
;; nt/
|
||||||
"ebuild.bat" "install.bat" "fast-install.bat"
|
"config.nt" "gmake.defs" "gnulib.mk" "nmake.defs"
|
||||||
|
"ebuild.bat" "envadd.bat" "fast-install.bat" "install.bat"
|
||||||
|
"multi-install-info.bat" "zipdist.bat"
|
||||||
"debug.bat.in" "emacs.bat.in" "addsection.c"
|
"debug.bat.in" "emacs.bat.in" "addsection.c"
|
||||||
"inc/sys/dir.h" "inc/gettext.h"
|
"inc/sys/dir.h" "inc/gettext.h"
|
||||||
"time.h"
|
"time.h"
|
||||||
|
|
@ -734,7 +743,9 @@ Changes to files in this list are not listed.")
|
||||||
"dns-mode.el" "run-at-time.el" "gnus-encrypt.el" "sha1-el.el"
|
"dns-mode.el" "run-at-time.el" "gnus-encrypt.el" "sha1-el.el"
|
||||||
"gnus-gl.el" "gnus.sum.el" "proto-stream.el" "color.el" "color-lab.el"
|
"gnus-gl.el" "gnus.sum.el" "proto-stream.el" "color.el" "color-lab.el"
|
||||||
"eww.el" "shr-color.el" "shr.el" "earcon.el" "gnus-audio.el" "encrypt.el"
|
"eww.el" "shr-color.el" "shr.el" "earcon.el" "gnus-audio.el" "encrypt.el"
|
||||||
"format-spec.el" "gnus-move.el"
|
"format-spec.el" "gnus-move.el" "gnus-sync.el"
|
||||||
|
"auth-source.el" "mailcap.el" "pop3.el" "qp.el" "registry.el"
|
||||||
|
"rfc2231.el" "sieve.el" "sieve-mode.el"
|
||||||
;; doc
|
;; doc
|
||||||
"getopt.c" "texindex.c" "news.texi" "vc.texi" "vc2-xtra.texi"
|
"getopt.c" "texindex.c" "news.texi" "vc.texi" "vc2-xtra.texi"
|
||||||
"back.texi" "vol1.texi" "vol2.texi" "elisp-covers.texi" "two.el"
|
"back.texi" "vol1.texi" "vol2.texi" "elisp-covers.texi" "two.el"
|
||||||
|
|
@ -764,10 +775,15 @@ Changes to files in this list are not listed.")
|
||||||
"emacsclient.c" "etags.c" "hexl.c" "make-docfile.c" "movemail.c"
|
"emacsclient.c" "etags.c" "hexl.c" "make-docfile.c" "movemail.c"
|
||||||
"test-distrib.c" "testfile"
|
"test-distrib.c" "testfile"
|
||||||
"tpu-edt.doc" ; see below
|
"tpu-edt.doc" ; see below
|
||||||
|
"lisp/obsolete/vc-mcvs.el"
|
||||||
"obsolete/vc-mcvs.el"
|
"obsolete/vc-mcvs.el"
|
||||||
"nnwarchive.el"
|
"nnwarchive.el"
|
||||||
"nnultimate.el"
|
"nnultimate.el"
|
||||||
"nnslashdot.el"
|
"nnslashdot.el"
|
||||||
|
"keyswap.el"
|
||||||
|
"mouse-sel.el"
|
||||||
|
"nxml-glyph.el"
|
||||||
|
"tramp-gw.el"
|
||||||
"webmail.el"
|
"webmail.el"
|
||||||
)
|
)
|
||||||
"File names which are valid, but no longer exist (or cannot be found)
|
"File names which are valid, but no longer exist (or cannot be found)
|
||||||
|
|
@ -881,10 +897,13 @@ in the repository.")
|
||||||
("nxml/test.invalid.xml" . "test-invalid.xml")
|
("nxml/test.invalid.xml" . "test-invalid.xml")
|
||||||
("nxml/test.valid.xml" . "test-valid.xml")
|
("nxml/test.valid.xml" . "test-valid.xml")
|
||||||
;; The one in lisp is eshell/eshell.el.
|
;; The one in lisp is eshell/eshell.el.
|
||||||
("eshell.el" . "automated/eshell.el")
|
("eshell.el" . "eshell-tests.el")
|
||||||
("eshell/esh-test.el" . "automated/eshell.el")
|
("automated/eshell.el" . "eshell-tests.el")
|
||||||
("automated/cl-lib.el" . "automated/cl-lib-tests.el")
|
("eshell/esh-test.el" . "eshell-tests.el")
|
||||||
("automated/package-x-test.el" . "automated/package-test.el")
|
("automated/cl-lib.el" . "cl-lib-tests.el")
|
||||||
|
("automated/cl-lib-tests.el" . "cl-lib-tests.el")
|
||||||
|
("automated/package-x-test.el" . "package-tests.el")
|
||||||
|
("automated/package-test.el" . "package-tests.el")
|
||||||
("indent/js-indent-first-initialiser-t.js" . "indent/js-indent-init-t.js")
|
("indent/js-indent-first-initialiser-t.js" . "indent/js-indent-init-t.js")
|
||||||
("indent/js-indent-first-initialiser-dynamic.js" .
|
("indent/js-indent-first-initialiser-dynamic.js" .
|
||||||
"indent/js-indent-init-dynamic.js")
|
"indent/js-indent-init-dynamic.js")
|
||||||
|
|
@ -931,7 +950,8 @@ in the repository.")
|
||||||
("GNU.JOKES" . "JOKES")
|
("GNU.JOKES" . "JOKES")
|
||||||
("CHARACTERS" . "TODO")
|
("CHARACTERS" . "TODO")
|
||||||
("lisp/character-fold.el" . "lisp/char-fold.el")
|
("lisp/character-fold.el" . "lisp/char-fold.el")
|
||||||
("test/automated/character-fold-tests.el" . "test/automated/char-fold-tests.el")
|
("test/automated/character-fold-tests.el" . "char-fold-tests.el")
|
||||||
|
("test/automated/char-fold-tests.el" . "char-fold-tests.el")
|
||||||
("images/gnus/mail_send.xpm" . "mail-send.xpm") ; still in images/gnus
|
("images/gnus/mail_send.xpm" . "mail-send.xpm") ; still in images/gnus
|
||||||
("schema/xhtml-basic-form.rnc" . "xhtml-bform.rnc" )
|
("schema/xhtml-basic-form.rnc" . "xhtml-bform.rnc" )
|
||||||
("schema/xhtml-basic-table.rnc" . "xhtml-btable.rnc")
|
("schema/xhtml-basic-table.rnc" . "xhtml-btable.rnc")
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
;; Jim Kingdon <kingdon@cyclic.com>
|
;; Jim Kingdon <kingdon@cyclic.com>
|
||||||
;; Stefan Monnier <monnier@cs.yale.edu>
|
;; Stefan Monnier <monnier@cs.yale.edu>
|
||||||
;; Greg Klanderman <greg@alphatech.com>
|
;; Greg Klanderman <greg@alphatech.com>
|
||||||
;; Jari Aalto+mail.emacs <jari.aalto@poboxes.com>
|
;; Jari Aalto <jari.aalto@poboxes.com>
|
||||||
;; Maintainer: Stefan Monnier <monnier@gnu.org>
|
;; Maintainer: Stefan Monnier <monnier@gnu.org>
|
||||||
;; Keywords: CVS, vc, release management
|
;; Keywords: CVS, vc, release management
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
;; Copyright (C) 2016-2017 Free Software Foundation, Inc.
|
;; Copyright (C) 2016-2017 Free Software Foundation, Inc.
|
||||||
|
|
||||||
;; Author: Google Inc.
|
;; Author: Philipp Stephani <phst@google.com>
|
||||||
|
|
||||||
;; This file is part of GNU Emacs.
|
;; This file is part of GNU Emacs.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue