Mercurial > emacs
changeset 11520:994ec4698b78
mail-font-lock-keywords efficiency fix.
author | Simon Marshall <simon@gnu.org> |
---|---|
date | Mon, 24 Apr 1995 11:49:06 +0000 |
parents | aecbeb4d287a |
children | d580a6f682b5 |
files | lisp/mail/sendmail.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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