From 9c1af54670152d1ed4b5de51ba6248c0965233d4 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Mon, 16 Oct 2000 12:52:19 +0000 Subject: [PATCH] (authors-add): Don't add an entry if author's name is unknown. --- lisp/emacs-lisp/authors.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- 2.39.2