From 9a9f44a4a4dd0d980b64851ca05444b120a34321 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Thu, 28 Sep 2000 16:21:17 +0000 Subject: [PATCH] (authors-add): Use `nconc' instead of `append'. --- lisp/emacs-lisp/authors.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5