]> git.eshelyaron.com Git - emacs.git/commitdiff
(authors-add): Use `nconc' instead of
authorGerd Moellmann <gerd@gnu.org>
Thu, 28 Sep 2000 16:21:17 +0000 (16:21 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 28 Sep 2000 16:21:17 +0000 (16:21 +0000)
`append'.

lisp/emacs-lisp/authors.el

index 49a111657fedf2daba661fa8ca74e56507142055..fb9e4788265f8425406f73021cd126f3a5da189d 100644 (file)
@@ -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)