Variable: woman-manpath-man-regexp
woman-manpath-man-regexp is a customizable variable defined in
woman.el.gz.
Value
"[Mm][Aa][Nn]"
Documentation
Regexp to match man directories UNDER woman-manpath directories.
These normally have names of the form man?. Its default value is
"[Mm][Aa][Nn]", which is case-insensitive mainly for the benefit of
Microsoft platforms. Its purpose is to avoid cat?, ., .., etc.
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defcustom woman-manpath-man-regexp "[Mm][Aa][Nn]"
"Regexp to match man directories UNDER `woman-manpath' directories.
These normally have names of the form `man?'. Its default value is
\"[Mm][Aa][Nn]\", which is case-insensitive mainly for the benefit of
Microsoft platforms. Its purpose is to avoid `cat?', `.', `..', etc."
;; Based on a suggestion by Wei-Xue Shi.
:type 'regexp
:group 'woman-interface)