* message.el (message-font-lock-keywords-1): Replace regexp for mml tags
authoryamaoka <yamaoka>
Tue, 10 Jul 2001 23:34:17 +0000 (23:34 +0000)
committeryamaoka <yamaoka>
Tue, 10 Jul 2001 23:34:17 +0000 (23:34 +0000)
 with `mime-edit-tag-regexp'.

ChangeLog
lisp/message.el

index dc6bbf6..2eae7f8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2001-07-10  Katsumi Yamaoka <yamaoka@jpl.org>
 
+       * lisp/message.el (message-font-lock-keywords-1): Replace regexp
+       for mml tags with `mime-edit-tag-regexp'.
+
+2001-07-10  Katsumi Yamaoka <yamaoka@jpl.org>
+
        * lisp/message.el (message-font-lock-keywords-2): Move definitions
        for cited texts and mml tags to `message-font-lock-keywords-1'.
 
index 7e871b9..2b692e2 100644 (file)
@@ -1247,7 +1247,7 @@ See also the documentations for the following variables:
          nil)
       (,(concat "^\\(" message-cite-prefix-regexp "\\).*")
        (0 'message-cited-text-face))
-      ("<#/?\\(multipart\\|part\\|external\\|mml\\).*>"
+      (,mime-edit-tag-regexp
        (0 'message-mml-face))))
   "Additional expressions to highlight in Message mode.")