diff options
| author | Kim F. Storm | 2006-06-04 22:01:24 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-06-04 22:01:24 +0000 |
| commit | 9109bf490901368c43dc0152855f1ab8ff1c02a7 (patch) | |
| tree | aeedc9561d99f79a9f2bd96deafd630ba888729d | |
| parent | 34c614a86204034d176616b738bf7ced0f675856 (diff) | |
| download | emacs-9109bf490901368c43dc0152855f1ab8ff1c02a7.tar.gz emacs-9109bf490901368c43dc0152855f1ab8ff1c02a7.zip | |
(authors-aliases): Add mode aliases.
(authors-fixed-entries): Fix spelling.
(authors-canonical-file-name): Don't report error for wildcards.
| -rw-r--r-- | lisp/emacs-lisp/authors.el | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/authors.el b/lisp/emacs-lisp/authors.el index 0d38ba03241..7ab0101b2a5 100644 --- a/lisp/emacs-lisp/authors.el +++ b/lisp/emacs-lisp/authors.el | |||
| @@ -42,6 +42,7 @@ 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") |
| @@ -118,6 +119,7 @@ files.") | |||
| 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") |
| @@ -128,6 +130,7 @@ files.") | |||
| 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 | ) |
| @@ -269,7 +272,7 @@ Changes to files in this list are not listed.") | |||
| 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 | ||
| @@ -355,7 +358,9 @@ the file name." | |||
| 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 |