Function: file-cache-delete-directory-list

file-cache-delete-directory-list is an interactive and byte-compiled function defined in filecache.el.gz.

Signature

(file-cache-delete-directory-list DIRECTORIES)

Documentation

Delete DIRECTORIES (a list of directory names) from the file cache.

If called interactively, read the directory names one by one.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/filecache.el.gz
(defun file-cache-delete-directory-list (directories)
  "Delete DIRECTORIES (a list of directory names) from the file cache.
If called interactively, read the directory names one by one."
  (interactive (list (file-cache--read-list nil "Uncache")))
  (dolist (d directories)
    (file-cache-delete-directory d)))