diff options
-rw-r--r-- | lisp/ChangeLog | 7 | ||||
-rw-r--r-- | lisp/man.el | 2 |
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 @@ +2005-05-29 Juri Linkov <juri@jurta.org> + + * add-log.el (change-log-font-lock-keywords): + Add `+' to e-mail regexp to accept mail address with keywords. + + * man.el (Man-name-regexp): Add `:' to accept qualified names. + 2005-05-29 Luc Teirlinck <teirllm@auburn.edu> * 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." (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]" |