From: Gerd Moellmann Date: Thu, 28 Sep 2000 16:21:17 +0000 (+0000) Subject: (authors-add): Use `nconc' instead of X-Git-Tag: emacs-pretest-21.0.90~1323 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9a9f44a4a4dd0d980b64851ca05444b120a34321;p=emacs.git (authors-add): Use `nconc' instead of `append'. --- diff --git a/lisp/emacs-lisp/authors.el b/lisp/emacs-lisp/authors.el index 49a111657fe..fb9e4788265 100644 --- a/lisp/emacs-lisp/authors.el +++ b/lisp/emacs-lisp/authors.el @@ -97,7 +97,7 @@ author and what he did in hash table TABLE. See the description of (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)