summaryrefslogtreecommitdiff
path: root/lisp/man.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-05-16 23:08:41 +0000
committerRichard M. Stallman <rms@gnu.org>1994-05-16 23:08:41 +0000
commit469e5e326fb576a1c033257a166ed1cc44ac438e (patch)
treecca163c1824b5e5cb67d6bda52f1032894f85f9c /lisp/man.el
parenta082d8bda8b032cd098fcd48c51b464286ac3899 (diff)
downloademacs-469e5e326fb576a1c033257a166ed1cc44ac438e.tar.gz
(Man-heading-regexp): Accept multiple whitespace chars.
Diffstat (limited to 'lisp/man.el')
-rw-r--r--lisp/man.el2
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"