Variable: woman-man.conf-path

woman-man.conf-path is a customizable variable defined in woman.el.gz.

Value

("/usr/lib" "/etc")

Documentation

List of dirs to search and/or files to try for man config file.

A trailing separator (/ for UNIX etc.) on directories is optional, and the filename is used if a directory specified is the first to start with "man" and has an extension starting with ".conf". If MANPATH is not set but a config file is found then it is parsed instead to provide a default value for woman-manpath.

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defcustom woman-man.conf-path
  (let ((path '("/usr/lib" "/etc")))
    (cond ((eq system-type 'windows-nt)
	   (mapcar #'woman-Cyg-to-Win path))
	  ((eq system-type 'darwin)
	   (cons "/usr/share/misc" path))
	  (t path)))
  "List of dirs to search and/or files to try for man config file.
A trailing separator (`/' for UNIX etc.) on directories is
optional, and the filename is used if a directory specified is
the first to start with \"man\" and has an extension starting
with \".conf\".  If MANPATH is not set but a config file is found
then it is parsed instead to provide a default value for
`woman-manpath'."
  :type '(repeat string)
  :group 'woman-interface)