From: Juri Linkov Date: Sun, 29 May 2005 16:09:50 +0000 (+0000) Subject: (Man-name-regexp): Add `:' to accept qualified names. X-Git-Tag: emacs-pretest-22.0.90~9430 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5f43c63c204e8d746abdf5702856e081dfd5602b;p=emacs.git (Man-name-regexp): Add `:' to accept qualified names. --- 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 + + * 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 * 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]"