diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-10-16 12:52:19 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-10-16 12:52:19 +0000 |
commit | 9c1af54670152d1ed4b5de51ba6248c0965233d4 (patch) | |
tree | 2cb2a69e357d82ba11d5ba5f3e3746c7a507df0f /lisp/emacs-lisp/authors.el | |
parent | c2e0a6111279ba85b7de3c511344a6dad18d85ed (diff) | |
download | emacs-9c1af54670152d1ed4b5de51ba6248c0965233d4.tar.gz |
(authors-add): Don't add an entry if
author's name is unknown.
Diffstat (limited to 'lisp/emacs-lisp/authors.el')
-rw-r--r-- | lisp/emacs-lisp/authors.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/authors.el b/lisp/emacs-lisp/authors.el index 0f2c2d2db0d..2530e9e4c19 100644 --- a/lisp/emacs-lisp/authors.el +++ b/lisp/emacs-lisp/authors.el @@ -113,7 +113,8 @@ from `authors-obsolete-files-regexps'." ACTION is a keyword symbol describing what he did. Record file, author and what he did in hash table TABLE. See the description of `authors-scan-change-log' for the structure of the hash table." - (unless (authors-obsolete-file-p file) + (unless (or (authors-obsolete-file-p file) + (equal author "")) (let* ((value (gethash author table)) (entry (assoc file value))) (if (null entry) |