Variable: Man-first-heading-regexp

Man-first-heading-regexp is a variable defined in man.el.gz.

Value

"^NAME$\\|^[    ]*No manual entry for.*$"

Documentation

Regular expression describing first heading on a manpage.

This regular expression should start with a ^ character.

Source Code

;; Defined in /usr/src/emacs/lisp/man.el.gz
;; This used to have leading space [ \t]*, but was removed because it
;; causes false page splits on an occasional NAME with leading space
;; inside a manpage.  And `Man-heading-regexp' doesn't have [ \t]* anyway.
(defvar Man-first-heading-regexp "^NAME$\\|^[ \t]*No manual entry for.*$"
  "Regular expression describing first heading on a manpage.
This regular expression should start with a `^' character.")