diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-05-16 23:08:41 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-05-16 23:08:41 +0000 |
commit | 469e5e326fb576a1c033257a166ed1cc44ac438e (patch) | |
tree | cca163c1824b5e5cb67d6bda52f1032894f85f9c /lisp/man.el | |
parent | a082d8bda8b032cd098fcd48c51b464286ac3899 (diff) | |
download | emacs-469e5e326fb576a1c033257a166ed1cc44ac438e.tar.gz |
(Man-heading-regexp): Accept multiple whitespace chars.
Diffstat (limited to 'lisp/man.el')
-rw-r--r-- | lisp/man.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/man.el b/lisp/man.el index 225b6277b1d..b82fd502e2f 100644 --- a/lisp/man.el +++ b/lisp/man.el @@ -201,7 +201,7 @@ the manpage buffer.") ;; Unless some system actually adds leading whitespace other than one space, ;; it is more reliable not to accept any other leading whitespace. -(defvar Man-heading-regexp "^ ?*\\([A-Z][A-Z \t]+\\)$" +(defvar Man-heading-regexp "^[ \t]*\\([A-Z][A-Z \t]+\\)$" "*Regular expression describing a manpage heading entry.") (defvar Man-see-also-regexp "SEE ALSO" |