Mercurial > emacs
changeset 32529:efaa4e4c5fef
(authors-add): Don't add an entry if
author's name is unknown.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 16 Oct 2000 12:52:19 +0000 |
parents | bb18ec7f4218 |
children | e56c929c9908 |
files | lisp/emacs-lisp/authors.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/authors.el Mon Oct 16 12:52:02 2000 +0000 +++ b/lisp/emacs-lisp/authors.el Mon Oct 16 12:52:19 2000 +0000 @@ -113,7 +113,8 @@ 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)