diff options
Diffstat (limited to 'lisp/emacs-lisp/authors.el')
-rw-r--r-- | lisp/emacs-lisp/authors.el | 2 |
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) |