comparison lisp/emacs-lisp/authors.el @ 71215:6a147eb20dc7

(authors-aliases): Add mode aliases. (authors-fixed-entries): Fix spelling. (authors-canonical-file-name): Don't report error for wildcards.
author Kim F. Storm <storm@cua.dk>
date Sun, 04 Jun 2006 22:01:24 +0000
parents 29132bd8c886
children d47d35f3df43 a8190f7e546e
comparison
equal deleted inserted replaced
71214:67e9aaddb920 71215:6a147eb20dc7
40 frequently modified files are printed and a count of the additional 40 frequently modified files are printed and a count of the additional
41 files.") 41 files.")
42 42
43 (defconst authors-aliases 43 (defconst authors-aliases
44 '( 44 '(
45 ("Andrew Csillag" "Drew Csillag")
45 ("Barry A. Warsaw" "Barry A. Warsaw, Century Computing, Inc." 46 ("Barry A. Warsaw" "Barry A. Warsaw, Century Computing, Inc."
46 "Barry A. Warsaw, ITB" "Barry Warsaw") 47 "Barry A. Warsaw, ITB" "Barry Warsaw")
47 ("Bj,Av(Brn Torkelsson" "Bjorn Torkelsson") 48 ("Bj,Av(Brn Torkelsson" "Bjorn Torkelsson")
48 ("Brian Fox" "Brian J. Fox") 49 ("Brian Fox" "Brian J. Fox")
49 ("Christoph Wedler" "Christoph.Wedler@sap.com") 50 ("Christoph Wedler" "Christoph.Wedler@sap.com")
116 "rms" "rms@gnu.org") 117 "rms" "rms@gnu.org")
117 ("Robert J. Chassell" "Bob Chassell") 118 ("Robert J. Chassell" "Bob Chassell")
118 ("Roland B. Roberts" "Roland B Roberts" "Roland Roberts") 119 ("Roland B. Roberts" "Roland B Roberts" "Roland Roberts")
119 ("Rui-Tao Dong" "Rui-Tao Dong ~{6-Hpln~}") 120 ("Rui-Tao Dong" "Rui-Tao Dong ~{6-Hpln~}")
120 ("Sam Steingold" "Sam Shteingold") 121 ("Sam Steingold" "Sam Shteingold")
122 ("Satyaki Das" "Indexed search by Satyaki Das")
121 ("Stefan Monnier" "Stefan") 123 ("Stefan Monnier" "Stefan")
122 ("Stephen A. Wood" "(saw@cebaf.gov)") 124 ("Stephen A. Wood" "(saw@cebaf.gov)")
123 ("Steven L. Baur" "SL Baur" "Steven L Baur") 125 ("Steven L. Baur" "SL Baur" "Steven L Baur")
124 ("Takaaki Ota" "Tak Ota") 126 ("Takaaki Ota" "Tak Ota")
125 ("Takahashi Naoto" "Naoto Takahashi") 127 ("Takahashi Naoto" "Naoto Takahashi")
126 ("Teodor Zlatanov" "Ted Zlatanov") 128 ("Teodor Zlatanov" "Ted Zlatanov")
127 ("Torbj,Av(Brn Axelsson" "Torbjvrn Axelsson") 129 ("Torbj,Av(Brn Axelsson" "Torbjvrn Axelsson")
128 ("Torbj,Av(Brn Einarsson" "Torbj.*rn Einarsson") 130 ("Torbj,Av(Brn Einarsson" "Torbj.*rn Einarsson")
129 ("Toru Tomabechi" "Toru Tomabechi,") 131 ("Toru Tomabechi" "Toru Tomabechi,")
130 ("Vincent Del Vecchio" "Vince Del Vecchio") 132 ("Vincent Del Vecchio" "Vince Del Vecchio")
133 ("William M. Perry" "Bill Perry")
131 ("Wlodzimierz Bzyl" "W.*dek Bzyl") 134 ("Wlodzimierz Bzyl" "W.*dek Bzyl")
132 ("Yutaka NIIBE" "NIIBE Yutaka") 135 ("Yutaka NIIBE" "NIIBE Yutaka")
133 ) 136 )
134 "Alist of author aliases. 137 "Alist of author aliases.
135 138
267 "nt.c" "nt.h" "ntheap.c" "ntheap.h" "ntinevt.c" 270 "nt.c" "nt.h" "ntheap.c" "ntheap.h" "ntinevt.c"
268 "ntproc.c" "ntterm.c" "windowsnt.h") 271 "ntproc.c" "ntterm.c" "windowsnt.h")
269 ("Morten Welinder" :wrote "dosfns.c" "[many MSDOS files]" "msdos.h") 272 ("Morten Welinder" :wrote "dosfns.c" "[many MSDOS files]" "msdos.h")
270 ("Pace Willisson" :wrote "ispell.el") 273 ("Pace Willisson" :wrote "ispell.el")
271 ("Garrett Wollman" :changed "sendmail.el") 274 ("Garrett Wollman" :changed "sendmail.el")
272 ("Dale Worley" :changed "mail-extr.el") 275 ("Dale R. Worley" :changed "mail-extr.el")
273 ("Jamie Zawinski" :changed "bytecode.c" :wrote "disass.el" "tar-mode.el")) 276 ("Jamie Zawinski" :changed "bytecode.c" :wrote "disass.el" "tar-mode.el"))
274 "Actions taken from the original, manually (un)maintained AUTHORS file.") 277 "Actions taken from the original, manually (un)maintained AUTHORS file.")
275 278
276 279
277 (defconst authors-valid-file-names 280 (defconst authors-valid-file-names
353 relname) 356 relname)
354 rules nil)) 357 rules nil))
355 (setq rules (cdr rules)))))) 358 (setq rules (cdr rules))))))
356 (setq authors-checked-files-alist 359 (setq authors-checked-files-alist
357 (cons (cons file valid) authors-checked-files-alist)) 360 (cons (cons file valid) authors-checked-files-alist))
358 (unless valid 361 (unless (or valid
362 (string-match "[*]" file)
363 (string-match "^[0-9.]+$" file))
359 (setq authors-invalid-file-names 364 (setq authors-invalid-file-names
360 (cons (format "%s:%d: unrecognized `%s' for %s" 365 (cons (format "%s:%d: unrecognized `%s' for %s"
361 log-file 366 log-file
362 (1+ (count-lines (point-min) pos)) 367 (1+ (count-lines (point-min) pos))
363 file author) 368 file author)