(authors-add): Don't add an entry if
authorGerd Moellmann <gerd@gnu.org>
Mon, 16 Oct 2000 12:52:19 +0000 (12:52 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 16 Oct 2000 12:52:19 +0000 (12:52 +0000)
author's name is unknown.

lisp/emacs-lisp/authors.el

index 0f2c2d2..2530e9e 100644 (file)
@@ -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)