aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2012-11-17 14:09:49 +0800
committerChong Yidong2012-11-17 14:09:49 +0800
commit33f8917c078dd5abcc531b8273939ce276e26819 (patch)
tree452bc7ecf1653432ef3af194e5d2f106dad53727
parent2279276c8415433b73d6ac62df9319fbcc097746 (diff)
downloademacs-33f8917c078dd5abcc531b8273939ce276e26819.tar.gz
emacs-33f8917c078dd5abcc531b8273939ce276e26819.zip
* filecache.el (file-cache-add-file-list): Doc fix.
Fixes: debbugs:12694
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/filecache.el4
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 64075665bab..0a9b22ebfff 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12012-11-17 Chong Yidong <cyd@gnu.org>
2
3 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
4
12012-11-17 Glenn Morris <rgm@gnu.org> 52012-11-17 Glenn Morris <rgm@gnu.org>
2 6
3 * woman.el (woman-non-underline-faces): 7 * woman.el (woman-non-underline-faces):
diff --git a/lisp/filecache.el b/lisp/filecache.el
index 10e23bddca2..422b33f5dcb 100644
--- a/lisp/filecache.el
+++ b/lisp/filecache.el
@@ -303,7 +303,9 @@ files in each directory, not to the directory list itself."
303 directory-list)) 303 directory-list))
304 304
305(defun file-cache-add-file-list (file-list) 305(defun file-cache-add-file-list (file-list)
306 "Add FILE-LIST (a list of files names) to the file cache." 306 "Add FILE-LIST (a list of file names) to the file cache.
307Interactively, FILE-LIST is read as a Lisp expression, which
308should evaluate to the desired list of file names."
307 (interactive "XFile List: ") 309 (interactive "XFile List: ")
308 (mapcar 'file-cache-add-file file-list)) 310 (mapcar 'file-cache-add-file file-list))
309 311