# HG changeset patch # User Gerd Moellmann # Date 970158077 0 # Node ID 9fcbb508e58ca2fd84a8b29d30abc8dd510b284b # Parent 0ba33dfd56fc6cf4d2358b960d0882db11b73fa9 (authors-add): Use `nconc' instead of `append'. diff -r 0ba33dfd56fc -r 9fcbb508e58c lisp/emacs-lisp/authors.el --- 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)