aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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]"