Mercurial > emacs
changeset 31957:9fcbb508e58c
(authors-add): Use `nconc' instead of
`append'.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Thu, 28 Sep 2000 16:21:17 +0000 |
parents | 0ba33dfd56fc |
children | e78f4af801c8 |
files | lisp/emacs-lisp/authors.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/authors.el Thu Sep 28 15:53:17 2000 +0000 +++ b/lisp/emacs-lisp/authors.el Thu Sep 28 16:21:17 2000 +0000 @@ -97,7 +97,7 @@ (if (null entry) (puthash author (cons (list file action) value) table) (unless (memq action entry) - (append entry (list action)))))) + (nconc entry (list action)))))) (defun authors-process-lines (program &rest args)