emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-26 b51009d: * admin/authors.el (authors-canonical-au


From: Glenn Morris
Subject: [Emacs-diffs] emacs-26 b51009d: * admin/authors.el (authors-canonical-author-name):
Date: Tue, 24 Oct 2017 01:04:09 -0400 (EDT)

branch: emacs-26
commit b51009d7f02b796bcdf9b0893bc4ad348460e844
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>

    * admin/authors.el (authors-canonical-author-name):
    Ignore name issues in "lax" ChangeLogs.
---
 admin/authors.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/admin/authors.el b/admin/authors.el
index 16e6261..0455276 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))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]