# HG changeset patch # User Gerd Moellmann # Date 971700739 0 # Node ID efaa4e4c5fef9e92263a2c0ad7931562c552facc # Parent bb18ec7f4218115415e5bcfccbb0d1ca42da84f9 (authors-add): Don't add an entry if author's name is unknown. diff -r bb18ec7f4218 -r efaa4e4c5fef lisp/emacs-lisp/authors.el --- 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)