summaryrefslogtreecommitdiff
path: root/lisp/mail/sendmail.el
diff options
context:
space:
mode:
authorSimon Marshall <simon@gnu.org>1995-04-24 11:49:06 +0000
committerSimon Marshall <simon@gnu.org>1995-04-24 11:49:06 +0000
commit93947e1b05dc88664bf2de645383597202a6bc2d (patch)
tree287d62bd6c292473240e2af5aee8958f59e63bf8 /lisp/mail/sendmail.el
parentb14aa0b194c3ee07d2fd140d900ea85a8b22be5e (diff)
downloademacs-93947e1b05dc88664bf2de645383597202a6bc2d.tar.gz
mail-font-lock-keywords efficiency fix.
Diffstat (limited to 'lisp/mail/sendmail.el')
-rw-r--r--lisp/mail/sendmail.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index cb860322aab..15280f84aa9 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -192,11 +192,11 @@ actually occur.")
(list '("^To:" . font-lock-function-name-face)
'("^B?CC:\\|^Reply-To:" . font-lock-keyword-face)
'("^Subject:" . font-lock-comment-face)
- '("^Subject:\\s *\\(.+\\)$" 1 font-lock-type-face)
+ '("^Subject:\\s *\\(.+\\)" 1 font-lock-type-face)
(list (concat "^\\(" mail-header-separator "\\)$") 1
'font-lock-comment-face)
- '("^[ \t]*\\sw*[>|}].*$" . font-lock-reference-face) ; Citation.
- '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\):.*$" . font-lock-string-face))
+ '("^[ \t]*\\sw*[>|}].*" . font-lock-reference-face) ; Citation.
+ '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\):.*" . font-lock-string-face))
"Additional expressions to highlight in Mail mode.")
(defvar mail-send-hook nil