diff options
author | Glenn Morris <rgm@gnu.org> | 2012-11-17 17:52:36 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-11-17 17:52:36 -0800 |
commit | 2ac9538d674ab0aa937d22b68fef9136ddd904b9 (patch) | |
tree | 81cf8c6762c0443ca2debe490ecfa7c1e55d2da0 /lisp/filecache.el | |
parent | c9ed8e3d2ba6c7d6eda82a39cbfa87729f1ca53e (diff) | |
parent | 291a654dad6d4604ed4db80885b3af04e64c944f (diff) | |
download | emacs-2ac9538d674ab0aa937d22b68fef9136ddd904b9.tar.gz |
Merge from emacs-24; up to 2012-11-15T23:31:37Z!dancol@dancol.org
Diffstat (limited to 'lisp/filecache.el')
-rw-r--r-- | lisp/filecache.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/filecache.el b/lisp/filecache.el index 23246c24c45..f868ef5e275 100644 --- a/lisp/filecache.el +++ b/lisp/filecache.el @@ -300,7 +300,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)) |