aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-09-19 14:55:58 +0000
committerGerd Moellmann2000-09-19 14:55:58 +0000
commit8f4ca9a5e45f8ac3e52d23e3ef1fdcc0d084a7fa (patch)
treee9affc8f185609e24ee3c8ede8a647f89c9473ce
parent289eaef9e1b0e0bfa7f2054518484764616add9b (diff)
downloademacs-8f4ca9a5e45f8ac3e52d23e3ef1fdcc0d084a7fa.tar.gz
emacs-8f4ca9a5e45f8ac3e52d23e3ef1fdcc0d084a7fa.zip
(change-log-font-lock-keywords): Match names
more exactly for the case that font-lock-constant-face is underlined.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/add-log.el2
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e4eac89b166..5598ff181f3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12000-09-19 Gerd Moellmann <gerd@gnu.org>
2
3 * add-log.el (change-log-font-lock-keywords): Match names
4 more exactly for the case that font-lock-constant-face is
5 underlined.
6
12000-09-19 Andre Spiegel <spiegel@gnu.org> 72000-09-19 Andre Spiegel <spiegel@gnu.org>
2 8
3 * vc.el (vc-revert-buffer): Set vc-checkout-time correctly. 9 * vc.el (vc-revert-buffer): Set vc-checkout-time correctly.
@@ -15,7 +21,7 @@
15 * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el, 21 * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el,
16 * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el, 22 * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el,
17 * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el, 23 * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el,
18 * gnus/utf7.el, gnsu/uudecode.el, gnus/webmail.el: New files. 24 * gnus/utf7.el, gnus/uudecode.el, gnus/webmail.el: New files.
19 25
20 * startup.el (fancy-splash-text): New variable. 26 * startup.el (fancy-splash-text): New variable.
21 (fancy-splash-delay, fancy-splash-image): New user-options. 27 (fancy-splash-delay, fancy-splash-image): New user-options.
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."
152 ("^\\sw.........[0-9:+ ]*" 152 ("^\\sw.........[0-9:+ ]*"
153 (0 font-lock-string-face) 153 (0 font-lock-string-face)
154 ;; Name and e-mail; some people put e-mail in parens, not angles. 154 ;; Name and e-mail; some people put e-mail in parens, not angles.
155 ("\\([^<(]+\\)[(<]\\([A-Za-z0-9_.-]+@[A-Za-z0-9_.-]+\\)[>)]" nil nil 155 ("\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.-]+@[A-Za-z0-9_.-]+\\)[>)]" nil nil
156 (1 font-lock-constant-face) 156 (1 font-lock-constant-face)
157 (2 font-lock-variable-name-face))) 157 (2 font-lock-variable-name-face)))
158 ;; 158 ;;