Function: woman-file-accessible-directory-p

woman-file-accessible-directory-p is a byte-compiled function defined in woman.el.gz.

Signature

(woman-file-accessible-directory-p DIR)

Documentation

Return t if DIR is accessible, otherwise log a warning.

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman-file-accessible-directory-p (dir)
  "Return t if DIR is accessible, otherwise log a warning."
  (or (file-accessible-directory-p dir)
      (WoMan-warn "Ignoring inaccessible `man-page' directory `%s'!" dir)))