diff options
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)) |