Function: file-cache-delete-file-list
file-cache-delete-file-list is an interactive and byte-compiled
function defined in filecache.el.gz.
Signature
(file-cache-delete-file-list FILES &optional MESSAGE)
Documentation
Delete FILES (a list of files) from the file cache.
If called interactively, read the file names one by one. If MESSAGE is non-nil, or if called interactively, print a message reporting the number of file names deleted.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/filecache.el.gz
(defun file-cache-delete-file-list (files &optional message)
"Delete FILES (a list of files) from the file cache.
If called interactively, read the file names one by one.
If MESSAGE is non-nil, or if called interactively, print a
message reporting the number of file names deleted."
(interactive (list (file-cache--read-list t "Uncache") t))
(let ((n 0))
(dolist (f files)
(if (file-cache-delete-file f)
(setq n (1+ n))))
(when message
(message "Filecache: uncached %d file name%s."
n (if (= n 1) "" "s")))))