]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix comment in files-in-below-directory
authorNoam Postavsky <npostavs@gmail.com>
Mon, 27 Jun 2016 03:29:51 +0000 (23:29 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Thu, 28 Jul 2016 23:53:58 +0000 (19:53 -0400)
* doc/lispintro/emacs-lisp-intro.texi (Files List): Comment should not
say append, since the code is adding to front of list (Bug #21589).

doc/lispintro/emacs-lisp-intro.texi

index 10162b354676d21c0cff25a09f5fbcbd22b30b13..86c8da0e4612ec7043f65ec6d80d2cc66da366ab 100644 (file)
@@ -15465,7 +15465,7 @@ Here is the function:
 @group
       (cond
        ;; check to see whether filename ends in '.el'
-       ;; and if so, append its name to a list.
+       ;; and if so, add its name to a list.
        ((equal ".el" (substring (car (car current-directory-list)) -3))
         (setq el-files-list
               (cons (car (car current-directory-list)) el-files-list)))