Function: ido-remove-cached-dir
ido-remove-cached-dir is a byte-compiled function defined in
ido.el.gz.
Signature
(ido-remove-cached-dir DIR)
Documentation
Remove DIR from ido-dir-file-cache.
Source Code
;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-remove-cached-dir (dir)
"Remove DIR from `ido-dir-file-cache'."
(if (and ido-dir-file-cache
(stringp dir) (> (length dir) 0))
(let ((cached (assoc dir ido-dir-file-cache)))
(if cached
(setq ido-dir-file-cache (delq cached ido-dir-file-cache))))))