]> git.eshelyaron.com Git - emacs.git/commitdiff
* admin/authors.el (authors-canonical-author-name):
authorGlenn Morris <rgm@gnu.org>
Tue, 24 Oct 2017 05:04:01 +0000 (22:04 -0700)
committerGlenn Morris <rgm@gnu.org>
Tue, 24 Oct 2017 05:04:01 +0000 (22:04 -0700)
Ignore name issues in "lax" ChangeLogs.

admin/authors.el

index 16e62610bad62915398575d9a27340e98cffb5da..045527644a389e2958c4c320fc648974b7db803c 100644 (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))))