changeset 13304:3ac6db7496fd

Don't eval-when-compile mail-font-lock-keywords, since it refers to mail-header-separator.
author Simon Marshall <simon@gnu.org>
date Thu, 26 Oct 1995 13:53:18 +0000
parents fa3108c53fc3
children 63a43c4b29b2
files lisp/mail/sendmail.el
diffstat 1 files changed, 13 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/mail/sendmail.el	Thu Oct 26 13:48:35 1995 +0000
+++ b/lisp/mail/sendmail.el	Thu Oct 26 13:53:18 1995 +0000
@@ -199,20 +199,19 @@
      (modify-syntax-entry ?% ". " mail-mode-syntax-table)))
 
 (defvar mail-font-lock-keywords
-  (eval-when-compile
-    (let* ((cite-prefix "A-Za-z") (cite-suffix (concat cite-prefix "0-9_.@-")))
-      (list '("^To:" . font-lock-function-name-face)
-	    '("^B?CC:\\|^Reply-To:" . font-lock-keyword-face)
-	    '("^\\(Subject:\\)[ \t]*\\(.+\\)?"
-	      (1 font-lock-comment-face) (2 font-lock-type-face nil t))
-	    (list (concat "^\\(" (regexp-quote mail-header-separator) "\\)$")
-		  1 'font-lock-comment-face)
-	    (cons (concat "^[ \t]*"
-			  "\\([" cite-prefix "]+[" cite-suffix "]*\\)?"
-			  "[>|}].*")
-		  'font-lock-reference-face)
-	    '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\):.*"
-	      . font-lock-string-face))))
+  (let* ((cite-prefix "A-Za-z") (cite-suffix (concat cite-prefix "0-9_.@-")))
+    (list '("^To:" . font-lock-function-name-face)
+	  '("^B?CC:\\|^Reply-To:" . font-lock-keyword-face)
+	  '("^\\(Subject:\\)[ \t]*\\(.+\\)?"
+	    (1 font-lock-comment-face) (2 font-lock-type-face nil t))
+	  (list (concat "^\\(" (regexp-quote mail-header-separator) "\\)$")
+		1 'font-lock-comment-face)
+	  (cons (concat "^[ \t]*"
+			"\\([" cite-prefix "]+[" cite-suffix "]*\\)?"
+			"[>|}].*")
+		'font-lock-reference-face)
+	  '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\):.*"
+	    . font-lock-string-face)))
   "Additional expressions to highlight in Mail mode.")
 
 (defvar mail-send-hook nil