summaryrefslogtreecommitdiff
path: root/admin/authors.el
diff options
context:
space:
mode:
Diffstat (limited to 'admin/authors.el')
-rw-r--r--admin/authors.el7
1 files changed, 4 insertions, 3 deletions
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))))