Function: filesets-find-file

filesets-find-file is a byte-compiled function defined in filesets.el.gz.

Signature

(filesets-find-file FILE)

Documentation

Call find-file after a possible delay (see filesets-find-file-delay).

If filesets-be-docile-flag is true, a file, which isn't readable, will not be opened.

Source Code

;; Defined in /usr/src/emacs/lisp/filesets.el.gz
(defun filesets-find-file (file)
  "Call `find-file' after a possible delay (see `filesets-find-file-delay').
If `filesets-be-docile-flag' is true, a file, which isn't readable, will
not be opened."
;  (sleep-for filesets-find-file-delay)
  (when (or (file-readable-p file)
	    (not filesets-be-docile-flag))
    (sit-for filesets-find-file-delay)
    (with-suppressed-warnings ((interactive-only find-file))
      (find-file file))))