projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a38e94
)
Fix comment in files-in-below-directory
author
Noam Postavsky
<npostavs@gmail.com>
Mon, 27 Jun 2016 03:29:51 +0000
(23:29 -0400)
committer
Noam 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
patch
|
blob
|
history
diff --git
a/doc/lispintro/emacs-lisp-intro.texi
b/doc/lispintro/emacs-lisp-intro.texi
index 10162b354676d21c0cff25a09f5fbcbd22b30b13..86c8da0e4612ec7043f65ec6d80d2cc66da366ab 100644
(file)
--- 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, a
ppen
d its name to a list.
+ ;; and if so, a
d
d 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)))