From: Glenn Morris Date: Tue, 24 Oct 2017 05:04:01 +0000 (-0700) Subject: * admin/authors.el (authors-canonical-author-name): X-Git-Tag: emacs-26.0.91~483 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b51009d7f02b796bcdf9b0893bc4ad348460e844;p=emacs.git * admin/authors.el (authors-canonical-author-name): Ignore name issues in "lax" ChangeLogs. --- diff --git a/admin/authors.el b/admin/authors.el index 16e62610bad..045527644a3 100644 --- a/admin/authors.el +++ b/admin/authors.el @@ -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))))