From: Chong Yidong Date: Sat, 17 Nov 2012 06:09:49 +0000 (+0800) Subject: * filecache.el (file-cache-add-file-list): Doc fix. X-Git-Tag: emacs-24.2.90~57 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=33f8917c078dd5abcc531b8273939ce276e26819;p=emacs.git * filecache.el (file-cache-add-file-list): Doc fix. Fixes: debbugs:12694 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 64075665bab..0a9b22ebfff 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2012-11-17 Chong Yidong + + * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694). + 2012-11-17 Glenn Morris * 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." directory-list)) (defun file-cache-add-file-list (file-list) - "Add FILE-LIST (a list of files names) to the file cache." + "Add FILE-LIST (a list of file names) to the file cache. +Interactively, FILE-LIST is read as a Lisp expression, which +should evaluate to the desired list of file names." (interactive "XFile List: ") (mapcar 'file-cache-add-file file-list))