From: Noam Postavsky Date: Mon, 27 Jun 2016 03:29:51 +0000 (-0400) Subject: Fix comment in files-in-below-directory X-Git-Tag: emacs-25.1-rc2~35 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b443c3c;p=emacs.git Fix comment in files-in-below-directory * doc/lispintro/emacs-lisp-intro.texi (Files List): Comment should not say append, since the code is adding to front of list (Bug #21589). --- diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 10162b35467..86c8da0e461 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi @@ -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)))