summaryrefslogtreecommitdiff
path: root/lisp/add-log.el
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2000-09-19 14:55:58 +0000
committerGerd Moellmann <gerd@gnu.org>2000-09-19 14:55:58 +0000
commit8f4ca9a5e45f8ac3e52d23e3ef1fdcc0d084a7fa (patch)
treee9affc8f185609e24ee3c8ede8a647f89c9473ce /lisp/add-log.el
parent289eaef9e1b0e0bfa7f2054518484764616add9b (diff)
downloademacs-8f4ca9a5e45f8ac3e52d23e3ef1fdcc0d084a7fa.tar.gz
(change-log-font-lock-keywords): Match names
more exactly for the case that font-lock-constant-face is underlined.
Diffstat (limited to 'lisp/add-log.el')
-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)))
;;