summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2000-09-28 16:21:17 +0000
committerGerd Moellmann <gerd@gnu.org>2000-09-28 16:21:17 +0000
commit9a9f44a4a4dd0d980b64851ca05444b120a34321 (patch)
treefdb254ca8f459eab55839574e3a5a8de7d45f88d /lisp
parentfa003899b882a10a67ba360cb0e4803ad03f8bdd (diff)
downloademacs-9a9f44a4a4dd0d980b64851ca05444b120a34321.tar.gz
(authors-add): Use `nconc' instead of
`append'.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/authors.el2
1 files changed, 1 insertions, 1 deletions
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)