# HG changeset patch # User Simon Marshall # Date 798724146 0 # Node ID 994ec4698b7853a90a28e9d6bb708264dfe0cfd1 # Parent aecbeb4d287a35718373a612d2f1d562b52bc442 mail-font-lock-keywords efficiency fix. diff -r aecbeb4d287a -r 994ec4698b78 lisp/mail/sendmail.el --- a/lisp/mail/sendmail.el Mon Apr 24 11:46:17 1995 +0000 +++ b/lisp/mail/sendmail.el Mon Apr 24 11:49:06 1995 +0000 @@ -192,11 +192,11 @@ (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