From: Simon Marshall Date: Mon, 24 Apr 1995 11:46:17 +0000 (+0000) Subject: rmail-summary-font-lock-keywords efficiency fix. X-Git-Tag: emacs-19.34~4339 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=be94c30cd69e9fcaac29d0c647ad39c980cfa6ac;p=emacs.git rmail-summary-font-lock-keywords efficiency fix. --- diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el index 49b702143a9..76e98f9bc5f 100644 --- a/lisp/mail/rmailsum.el +++ b/lisp/mail/rmailsum.el @@ -30,8 +30,8 @@ ;;; Code: (defvar rmail-summary-font-lock-keywords - '(("^....D.*$" . font-lock-string-face) ; Deleted. - ("^....-.*$" . font-lock-type-face) ; Unread. + '(("^....D.*" . font-lock-string-face) ; Deleted. + ("^....-.*" . 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.