1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-24 10:38:38 +00:00

(Man-name-regexp): Add `:' to accept qualified names.

This commit is contained in:
Juri Linkov 2005-05-29 16:09:50 +00:00
parent 7397a79f13
commit 5f43c63c20
2 changed files with 8 additions and 1 deletions

View File

@ -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.

View File

@ -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]"