Variable: Man-page-header-regexp

Man-page-header-regexp is a variable defined in man.el.gz.

Value

"^[     ]*\\([-[:alnum:]_­+[@][-[:alnum:]_.:­+]*(\\([0-9][a-zA-Z0-9+]*\\|[LNln]\\))\\).*\\1"

Documentation

Regular expression describing the heading of a page.

Source Code

;; Defined in /usr/src/emacs/lisp/man.el.gz
(defvar Man-page-header-regexp
  (if (string-match "-solaris2\\." system-configuration)
      (concat "^[-[:alnum:]_].*[ \t]\\(" Man-name-regexp
	      "(\\(" Man-section-regexp "\\))\\)$")
    (concat "^[ \t]*\\(" Man-name-regexp
	    "(\\(" Man-section-regexp "\\))\\).*\\1"))
  "Regular expression describing the heading of a page.")