aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman1993-11-11 07:17:08 +0000
committerRichard M. Stallman1993-11-11 07:17:08 +0000
commitf5f76002c2e2f7c5714556dd9246f39d7cfc9a9e (patch)
tree25104d4dc43ccb4e22d1f43cddefcbbbbb4eb3d3 /lisp
parente6033883a5ddfe1566cf3bc400ec258a4c2c9fce (diff)
downloademacs-f5f76002c2e2f7c5714556dd9246f39d7cfc9a9e.tar.gz
emacs-f5f76002c2e2f7c5714556dd9246f39d7cfc9a9e.zip
(Man-section-regexp): Allow section names l, n, L, N.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/man.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/man.el b/lisp/man.el
index 9c011ea7d0c..709580f8636 100644
--- a/lisp/man.el
+++ b/lisp/man.el
@@ -188,7 +188,7 @@ the manpage buffer.")
188(defvar Man-mode-hooks nil 188(defvar Man-mode-hooks nil
189 "*Hooks for Man mode.") 189 "*Hooks for Man mode.")
190 190
191(defvar Man-section-regexp "[0-9][a-zA-Z+]*" 191(defvar Man-section-regexp "[0-9][a-zA-Z+]*\\|[LNln]"
192 "*Regular expression describing a manpage section within parentheses.") 192 "*Regular expression describing a manpage section within parentheses.")
193 193
194(defvar Man-heading-regexp "^ ?[A-Z]" 194(defvar Man-heading-regexp "^ ?[A-Z]"