aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2000-03-17 20:05:14 +0000
committerStefan Monnier <[email protected]>2000-03-17 20:05:14 +0000
commitaf5954448519a70407567eb18ff780428b691f95 (patch)
treebf54762ddaf7f3eb4c4071a139e716b79dfbc604
parenta29a2cd183911f66ac184a3103eccb19d6d50ff4 (diff)
(rmail-summary-font-lock-keywords): Make sure the
regexp for labels cannot span several lines.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/mail/rmailsum.el2
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 44ec52f08b..cd3088f523 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,6 +1,10 @@
2000-03-17 Stefan Monnier <[email protected]>
- * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add (setq :<key> ':<key>).
+ * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
+ regexp for labels cannot span several lines.
+
+ * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
+ (setq :<key> ':<key>) to the macro expansion.
2000-03-16 Dave Love <[email protected]>
diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el
index 38688190c5..b1387633db 100644
--- a/lisp/mail/rmailsum.el
+++ b/lisp/mail/rmailsum.el
@@ -50,7 +50,7 @@
("^....-.*" . font-lock-type-face) ; Unread.
;; Neither of the below will be highlighted if either of the above are:
("^....[^D-] \\(......\\)" 1 font-lock-keyword-face) ; Date.
- ("{ \\([^}]+\\),}" 1 font-lock-comment-face)) ; Labels.
+ ("{ \\([^\n}]+\\),}" 1 font-lock-comment-face)) ; Labels.
"Additional expressions to highlight in Rmail Summary mode.")
;; Entry points for making a summary buffer.