mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(rmail-summary-font-lock-keywords): Make sure the
regexp for labels cannot span several lines.
This commit is contained in:
parent
a29a2cd183
commit
af59544485
2 changed files with 6 additions and 2 deletions
|
|
@ -1,6 +1,10 @@
|
|||
2000-03-17 Stefan Monnier <monnier@cs.yale.edu>
|
||||
|
||||
* 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 <fx@gnu.org>
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue