diff options
author | Juri Linkov <juri@jurta.org> | 2005-05-29 16:09:04 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2005-05-29 16:09:04 +0000 |
commit | 7397a79f133a85bcf2cb88d6432e60510f6ee590 (patch) | |
tree | ac1d235209b050e4e03cc767b23bb629e93bb6ed /lisp/add-log.el | |
parent | fbc6ab1a4d4c1bc1b65c009119741d0fc624bbf0 (diff) | |
download | emacs-7397a79f133a85bcf2cb88d6432e60510f6ee590.tar.gz emacs-7397a79f133a85bcf2cb88d6432e60510f6ee590.tar.bz2 emacs-7397a79f133a85bcf2cb88d6432e60510f6ee590.zip |
(change-log-font-lock-keywords):
Add `+' to e-mail regexp to accept mail address with keywords.
Diffstat (limited to 'lisp/add-log.el')
-rw-r--r-- | lisp/add-log.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el index 6dcbfca0c26..4131b237e5c 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el @@ -220,7 +220,7 @@ Note: The search is conducted only within 10%, at the beginning of the file." ("^\\sw.........[0-9:+ ]*" (0 'change-log-date-face) ;; Name and e-mail; some people put e-mail in parens, not angles. - ("\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.-]+@[A-Za-z0-9_.-]+\\)[>)]" nil nil + ("\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]" nil nil (1 'change-log-name-face) (2 'change-log-email-face))) ;; |