aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuri Linkov2005-05-29 16:09:50 +0000
committerJuri Linkov2005-05-29 16:09:50 +0000
commit5f43c63c204e8d746abdf5702856e081dfd5602b (patch)
treed8d6f793a783051dd7ee1e29d1ed30cea34ad849 /lisp
parent7397a79f133a85bcf2cb88d6432e60510f6ee590 (diff)
downloademacs-5f43c63c204e8d746abdf5702856e081dfd5602b.tar.gz
emacs-5f43c63c204e8d746abdf5702856e081dfd5602b.zip
(Man-name-regexp): Add `:' to accept qualified names.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/man.el2
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 44dad961c60..aaf3b286f3d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12005-05-29 Juri Linkov <juri@jurta.org>
2
3 * add-log.el (change-log-font-lock-keywords):
4 Add `+' to e-mail regexp to accept mail address with keywords.
5
6 * man.el (Man-name-regexp): Add `:' to accept qualified names.
7
12005-05-29 Luc Teirlinck <teirllm@auburn.edu> 82005-05-29 Luc Teirlinck <teirllm@auburn.edu>
2 9
3 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks. 10 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
diff --git a/lisp/man.el b/lisp/man.el
index aa5bd04dd57..d7344ed2f7a 100644
--- a/lisp/man.el
+++ b/lisp/man.el
@@ -259,7 +259,7 @@ the associated section number."
259(defvar Man-cooked-hook nil 259(defvar Man-cooked-hook nil
260 "Hook run after removing backspaces but before `Man-mode' processing.") 260 "Hook run after removing backspaces but before `Man-mode' processing.")
261 261
262(defvar Man-name-regexp "[-a-zA-Z0-9_­+][-a-zA-Z0-9_.­+]*" 262(defvar Man-name-regexp "[-a-zA-Z0-9_­+][-a-zA-Z0-9_.:­+]*"
263 "Regular expression describing the name of a manpage (without section).") 263 "Regular expression describing the name of a manpage (without section).")
264 264
265(defvar Man-section-regexp "[0-9][a-zA-Z+]*\\|[LNln]" 265(defvar Man-section-regexp "[0-9][a-zA-Z+]*\\|[LNln]"