1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

* admin/authors.el (authors-canonical-author-name):

Ignore name issues in "lax" ChangeLogs.
This commit is contained in:
Glenn Morris 2017-10-23 22:04:01 -07:00
parent a015db90e3
commit b51009d7f0

View File

@ -1353,9 +1353,10 @@ it is found in `authors-fixed-case'."
(setq author (replace-regexp-in-string "[ \t]+" " " author))
;; NB this ignores the first name only case.
(unless (string-match "[-, \t]" author)
(push (format-message "%s:%d: ignored `%s'"
file (1+ (count-lines (point-min) pos)) author)
authors-ignored-names)
(or (authors-lax-changelog-p file)
(push (format-message "%s:%d: ignored `%s'"
file (1+ (count-lines (point-min) pos)) author)
authors-ignored-names))
(setq author ""))
(or (car (member author authors-fixed-case))
(capitalize author))))