diff options
| author | Glenn Morris | 2015-02-01 17:17:57 -0800 |
|---|---|---|
| committer | Glenn Morris | 2015-02-01 17:17:57 -0800 |
| commit | 43b82baa79132b4ad8ae123532c8f49467d93cb1 (patch) | |
| tree | 84259a813baaf62e8756575af50b845f1eaf7651 /lisp | |
| parent | 9e22ff02ed9e0e448ee372cadbcecbc3e7d2dad8 (diff) | |
| download | emacs-43b82baa79132b4ad8ae123532c8f49467d93cb1.tar.gz emacs-43b82baa79132b4ad8ae123532c8f49467d93cb1.zip | |
authors.el: backport some additions
* lisp/emacs-lisp/authors.el (authors-obsolete-files-regexps)
(authors-valid-file-names, authors-renamed-files-alist): Additions.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/authors.el | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2d4f71f6cec..cc42bcecc9c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2015-02-02 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/authors.el (authors-obsolete-files-regexps) | ||
| 4 | (authors-valid-file-names, authors-renamed-files-alist): Additions. | ||
| 5 | |||
| 1 | 2015-02-01 Alan Mackenzie <acm@muc.de> | 6 | 2015-02-01 Alan Mackenzie <acm@muc.de> |
| 2 | 7 | ||
| 3 | CC Mode: Stop Font Lock forcing fontification from BOL. Fixes | 8 | CC Mode: Stop Font Lock forcing fontification from BOL. Fixes |
diff --git a/lisp/emacs-lisp/authors.el b/lisp/emacs-lisp/authors.el index e20ae9543cd..762b0a3a2f5 100644 --- a/lisp/emacs-lisp/authors.el +++ b/lisp/emacs-lisp/authors.el | |||
| @@ -240,7 +240,7 @@ If REALNAME is nil, ignore that author.") | |||
| 240 | 240 | ||
| 241 | (defvar authors-obsolete-files-regexps | 241 | (defvar authors-obsolete-files-regexps |
| 242 | '(".*loaddefs.el$" ; not obsolete, but auto-generated | 242 | '(".*loaddefs.el$" ; not obsolete, but auto-generated |
| 243 | "\\.\\(cvs\\|git\\)ignore$" ; obsolete or uninteresting | 243 | "\\.\\(bzr\\|cvs\\|git\\)ignore$" ; obsolete or uninteresting |
| 244 | "\\.arch-inventory$" | 244 | "\\.arch-inventory$" |
| 245 | "automated/data/" ; not interesting | 245 | "automated/data/" ; not interesting |
| 246 | ;; TODO lib/? Matches other things? | 246 | ;; TODO lib/? Matches other things? |
| @@ -632,6 +632,7 @@ Changes to files in this list are not listed.") | |||
| 632 | "images/page-down.xpm" "images/widen.pbm" "images/widen.xpm" | 632 | "images/page-down.xpm" "images/widen.pbm" "images/widen.xpm" |
| 633 | "images/gnus/bar.xbm" "images/gnus/bar.xpm" | 633 | "images/gnus/bar.xbm" "images/gnus/bar.xpm" |
| 634 | "images/gnus/reverse-smile.xpm" | 634 | "images/gnus/reverse-smile.xpm" |
| 635 | "notes/changelogs" | ||
| 635 | "revdiff" ; admin/ | 636 | "revdiff" ; admin/ |
| 636 | "vcdiff" "rcs-checkin" "tindex.pl" | 637 | "vcdiff" "rcs-checkin" "tindex.pl" |
| 637 | "mainmake" "sed1.inp" "sed2.inp" "sed3.inp" ; msdos/ | 638 | "mainmake" "sed1.inp" "sed2.inp" "sed3.inp" ; msdos/ |
| @@ -848,6 +849,8 @@ in the repository.") | |||
| 848 | ("grammars/wisent-grammar.el" . "wisent/grammar.el") | 849 | ("grammars/wisent-grammar.el" . "wisent/grammar.el") |
| 849 | ;; Moved from admin/nt/ to nt/. | 850 | ;; Moved from admin/nt/ to nt/. |
| 850 | ("nt/README.W32" . "README.W32") | 851 | ("nt/README.W32" . "README.W32") |
| 852 | ("notes/BRANCH" . "notes/repo") | ||
| 853 | ("notes/bzr" . "notes/repo") | ||
| 851 | ) | 854 | ) |
| 852 | "Alist of files which have been renamed during their lifetime. | 855 | "Alist of files which have been renamed during their lifetime. |
| 853 | Elements are (OLDNAME . NEWNAME).") | 856 | Elements are (OLDNAME . NEWNAME).") |