Function: woman-file-readable-p
woman-file-readable-p is a byte-compiled function defined in
woman.el.gz.
Signature
(woman-file-readable-p DIR)
Documentation
Return t if DIR is readable, otherwise log a warning.
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman-file-readable-p (dir)
"Return t if DIR is readable, otherwise log a warning."
(or (file-readable-p dir)
(WoMan-warn "Ignoring unreadable `manpath' directory tree `%s'!" dir)))