summaryrefslogtreecommitdiff
path: root/lisp/man.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2003-07-07 21:01:55 +0000
committerRichard M. Stallman <rms@gnu.org>2003-07-07 21:01:55 +0000
commit50099a09c19e147c6a067f68ca5f27f523632d37 (patch)
tree191c48c6be3eb19852815a226e7ce070fa716007 /lisp/man.el
parent0f7df53513f01086033e91790f558535cde91d7e (diff)
downloademacs-50099a09c19e147c6a067f68ca5f27f523632d37.tar.gz
(Man-name-regexp): Match + as part of name.
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 e7622f13200..f46d731c745 100644
--- a/lisp/man.el
+++ b/lisp/man.el
@@ -241,7 +241,7 @@ the associated section number."
(defvar Man-cooked-hook nil
"Hook run after removing backspaces but before `Man-mode' processing.")
-(defvar Man-name-regexp "[-a-zA-Z0-9_­][-a-zA-Z0-9_.­]*"
+(defvar Man-name-regexp "[-a-zA-Z0-9_­+][-a-zA-Z0-9_.­+]*"
"Regular expression describing the name of a manpage (without section).")
(defvar Man-section-regexp "[0-9][a-zA-Z+]*\\|[LNln]"