Function: file-cache-debug-read-from-minibuffer
file-cache-debug-read-from-minibuffer is an interactive and
byte-compiled function defined in filecache.el.gz.
Signature
(file-cache-debug-read-from-minibuffer FILE)
Documentation
Debugging function.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/filecache.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Debugging functions
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun file-cache-debug-read-from-minibuffer (file)
"Debugging function."
(interactive
(list (completing-read "File Cache: " file-cache-alist)))
(message "%s" (assoc-string file file-cache-alist
file-cache-ignore-case)))