Variable: Man-name-local-regexp
Man-name-local-regexp is a customizable variable defined in man.el.gz.
Value
"^\\(?:N\\(?:AME\\|OM\\)\\)$"
Documentation
Regexp that matches the text that precedes the command's name.
Used in bookmark-set to get the default bookmark name.
This variable was added, or its default value changed, in Emacs 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/man.el.gz
(defcustom Man-name-local-regexp (concat "^" (regexp-opt '("NOM" "NAME")) "$")
"Regexp that matches the text that precedes the command's name.
Used in `bookmark-set' to get the default bookmark name."
:version "24.1"
:type 'regexp :group 'bookmark)