summaryrefslogtreecommitdiff
path: root/lisp/man.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/man.el')
-rw-r--r--lisp/man.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/man.el b/lisp/man.el
index 3bca3d7e2b7..29d9bf9f1da 100644
--- a/lisp/man.el
+++ b/lisp/man.el
@@ -199,7 +199,7 @@ the manpage buffer.")
(defvar Man-section-regexp "[0-9][a-zA-Z+]*\\|[LNln]"
"*Regular expression describing a manpage section within parentheses.")
-(defvar Man-heading-regexp "^[ \t]*[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"
@@ -631,7 +631,7 @@ The following key bindings are currently in effect in the buffer:
(let ((case-fold-search nil))
(while (re-search-forward Man-heading-regexp (point-max) t)
(aput 'Man-sections-alist
- (buffer-substring (Man-linepos 'bol) (Man-linepos)))
+ (buffer-substring (match-beginning 1) (match-end 1)))
(forward-line 1))))
(defun Man-build-references-alist ()