mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(Man-heading-regexp): Add 0-9.
(Man-first-heading-regexp): Remove leading space [ \t]* before NAME.
This commit is contained in:
parent
0df5538d11
commit
30971bf967
1 changed files with 5 additions and 2 deletions
|
|
@ -264,14 +264,17 @@ the associated section number."
|
|||
"(\\(" Man-section-regexp "\\))\\).*\\1"))
|
||||
"Regular expression describing the heading of a page.")
|
||||
|
||||
(defvar Man-heading-regexp "^\\([A-Z][A-Z /-]+\\)$"
|
||||
(defvar Man-heading-regexp "^\\([A-Z][A-Z0-9 /-]+\\)$"
|
||||
"Regular expression describing a manpage heading entry.")
|
||||
|
||||
(defvar Man-see-also-regexp "SEE ALSO"
|
||||
"Regular expression for SEE ALSO heading (or your equivalent).
|
||||
This regexp should not start with a `^' character.")
|
||||
|
||||
(defvar Man-first-heading-regexp "^[ \t]*NAME$\\|^[ \t]*No manual entry fo.*$"
|
||||
;; 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 fo.*$"
|
||||
"Regular expression describing first heading on a manpage.
|
||||
This regular expression should start with a `^' character.")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue