aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-02-22 20:52:35 -0500
committerGlenn Morris2012-02-22 20:52:35 -0500
commit5e6e679443e5ed6127521b3b9c0f3e4e1cdc3b82 (patch)
tree0cf9ab20b5f0d4a634d856f41bedf60039943119
parent6ea1787edaab5e3e1e0bed53accbf0eb2adf527f (diff)
downloademacs-5e6e679443e5ed6127521b3b9c0f3e4e1cdc3b82.tar.gz
emacs-5e6e679443e5ed6127521b3b9c0f3e4e1cdc3b82.zip
More authors.el additions
* lisp/emacs-lisp/authors.el (authors-aliases, authors-fixed-case) (authors-obsolete-files-regexps): Add more entries.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/emacs-lisp/authors.el11
2 files changed, 10 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 325d386e592..4be77a90c6c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,6 +1,6 @@
12012-02-23 Glenn Morris <rgm@gnu.org> 12012-02-23 Glenn Morris <rgm@gnu.org>
2 2
3 * emacs-lisp/authors.el (authors-aliases) 3 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
4 (authors-obsolete-files-regexps, authors-ignored-files) 4 (authors-obsolete-files-regexps, authors-ignored-files)
5 (authors-ambiguous-files, authors-renamed-files-alist): 5 (authors-ambiguous-files, authors-renamed-files-alist):
6 Add more entries. 6 Add more entries.
diff --git a/lisp/emacs-lisp/authors.el b/lisp/emacs-lisp/authors.el
index 636bc23dc47..7a4f93ad0e4 100644
--- a/lisp/emacs-lisp/authors.el
+++ b/lisp/emacs-lisp/authors.el
@@ -81,6 +81,8 @@ files.")
81 ("Gerd Möllmann" "Gerd Moellmann") 81 ("Gerd Möllmann" "Gerd Moellmann")
82 ("Hallvard B. Furuseth" "Hallvard B Furuseth" "Hallvard Furuseth") 82 ("Hallvard B. Furuseth" "Hallvard B Furuseth" "Hallvard Furuseth")
83 ("Hrvoje Nikšić" "Hrvoje Niksic") 83 ("Hrvoje Nikšić" "Hrvoje Niksic")
84 ;; lisp/org/ChangeLog 2010-11-11.
85 (nil "aaa bbb")
84 ;; src/ChangeLog.4, 1994-01-11, since fixed. 86 ;; src/ChangeLog.4, 1994-01-11, since fixed.
85;;; (nil "(afs@hplb.hpl.hp.com)") 87;;; (nil "(afs@hplb.hpl.hp.com)")
86 ;; lisp/gnus/ChangeLog.1, 1998-01-15. 88 ;; lisp/gnus/ChangeLog.1, 1998-01-15.
@@ -186,6 +188,7 @@ Each entry is of the form (REALNAME REGEXP...). If an author's name
186matches one of the REGEXPs, use REALNAME instead. 188matches one of the REGEXPs, use REALNAME instead.
187If REALNAME is nil, ignore that author.") 189If REALNAME is nil, ignore that author.")
188 190
191;; FIXME seems it would be less fragile to check for O', Mc, etc.
189(defconst authors-fixed-case 192(defconst authors-fixed-case
190 '("Bryan O'Sullivan" 193 '("Bryan O'Sullivan"
191 "Christian von Roques" 194 "Christian von Roques"
@@ -194,6 +197,7 @@ If REALNAME is nil, ignore that author.")
194 "David J. MacKenzie" 197 "David J. MacKenzie"
195 "David McCabe" 198 "David McCabe"
196 "David O'Toole" 199 "David O'Toole"
200 "Devon Sean McCullough"
197 "Dominique de Waleffe" 201 "Dominique de Waleffe"
198 "Edward O'Connor" 202 "Edward O'Connor"
199 "Exal de Jesus Garcia Carrillo" 203 "Exal de Jesus Garcia Carrillo"
@@ -206,8 +210,11 @@ If REALNAME is nil, ignore that author.")
206 "Nelson Jose dos Santos Ferreira" 210 "Nelson Jose dos Santos Ferreira"
207 "Peter von der Ahe" 211 "Peter von der Ahe"
208 "Peter O'Gorman" 212 "Peter O'Gorman"
213 "Piet van Oostrum"
209 "Roland McGrath" 214 "Roland McGrath"
210 "Sean O'Rourke") 215 "Sean O'Halpin"
216 "Sean O'Rourke"
217 "Tijs van Bakel")
211 "List of authors whose names cannot be simply capitalized.") 218 "List of authors whose names cannot be simply capitalized.")
212 219
213(defvar authors-public-domain-files 220(defvar authors-public-domain-files
@@ -235,7 +242,7 @@ If REALNAME is nil, ignore that author.")
235 "\\.\\(cvs\\|git\\)ignore$" ; obsolete or uninteresting 242 "\\.\\(cvs\\|git\\)ignore$" ; obsolete or uninteresting
236 "\\.arch-inventory$" 243 "\\.arch-inventory$"
237 ;; TODO lib/? Matches other things? 244 ;; TODO lib/? Matches other things?
238 "m4/" "Emacs.xcodeproj" "charsets" "mapfiles" 245 "build-aux/" "m4/" "Emacs.xcodeproj" "charsets" "mapfiles"
239 "preferences\\.\\(nib\\|gorm\\)" 246 "preferences\\.\\(nib\\|gorm\\)"
240 "vc-\\(rcs\\|cvs\\|sccs\\)-hooks\\.el$") 247 "vc-\\(rcs\\|cvs\\|sccs\\)-hooks\\.el$")
241 "List of regexps matching obsolete files. 248 "List of regexps matching obsolete files.