Function: ido-local-file-exists-p

ido-local-file-exists-p is a byte-compiled function defined in ido.el.gz.

Signature

(ido-local-file-exists-p FILE)

Documentation

Tell if FILE exists locally.

Source Code

;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-local-file-exists-p (file)
  "Tell if FILE exists locally."
  (let (file-name-handler-alist)
    (file-exists-p file)))