Variable: find-directory-functions

find-directory-functions is a customizable variable defined in files.el.gz.

Value

(cvs-dired-noselect
 dired-noselect)

Documentation

List of functions to try in sequence to visit a directory.

Each function is called with the directory name as the sole argument and should return either a buffer or nil.

Source Code

;; Defined in /usr/src/emacs/lisp/files.el.gz
(defcustom find-directory-functions '(cvs-dired-noselect dired-noselect)
  "List of functions to try in sequence to visit a directory.
Each function is called with the directory name as the sole argument
and should return either a buffer or nil."
  :type '(hook :options (cvs-dired-noselect dired-noselect))
  :group 'find-file)