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).
This commit is contained in:
parent
8a38e948b0
commit
b443c3c748
1 changed files with 1 additions and 1 deletions
|
@ -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)))
|
||||
|
|
Loading…
Add table
Reference in a new issue