summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2000-09-19 14:53:31 +0000
committerGerd Moellmann <gerd@gnu.org>2000-09-19 14:53:31 +0000
commitcd4080a6a42cde0fea4745a16f738e8e336e01f5 (patch)
treede454bafc83359a994e45d2d7c2871d43b9c9479
parent0f9babccc1a65bc114cc83eae362eac2c33f5565 (diff)
downloademacs-cd4080a6a42cde0fea4745a16f738e8e336e01f5.tar.gz
(change-log-font-lock-keywords): Match names
more exactly for the case that font-lock-constant-face is underlined.
-rw-r--r--lisp/add-log.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/add-log.el b/lisp/add-log.el
index f2b93b8c047..0d253614945 100644
--- a/lisp/add-log.el
+++ b/lisp/add-log.el
@@ -152,7 +152,7 @@ Note: The search is conducted only within 10%, at the beginning of the file."
("^\\sw.........[0-9:+ ]*"
(0 font-lock-string-face)
;; Name and e-mail; some people put e-mail in parens, not angles.
- ("\\([^<(]+\\)[(<]\\([A-Za-z0-9_.-]+@[A-Za-z0-9_.-]+\\)[>)]" nil nil
+ ("\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.-]+@[A-Za-z0-9_.-]+\\)[>)]" nil nil
(1 font-lock-constant-face)
(2 font-lock-variable-name-face)))
;;