diff options
author | Noam Postavsky <npostavs@gmail.com> | 2016-06-26 23:29:51 -0400 |
---|---|---|
committer | Noam Postavsky <npostavs@gmail.com> | 2016-07-28 19:53:58 -0400 |
commit | b443c3c7480f3fff9bb574e79a72e69e3ad501bb (patch) | |
tree | 483f46d40cc75d3554fee6376d317542f6bafba0 /doc | |
parent | 8a38e948b039516e70176ebe20c5349e2ade6ac5 (diff) |
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).
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 10162b3546..86c8da0e46 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))) |