(mail-font-lock-keywords): Use [:alpha:], not
authorDave Love <fx@gnu.org>
Sun, 12 Nov 2000 00:27:05 +0000 (00:27 +0000)
committerDave Love <fx@gnu.org>
Sun, 12 Nov 2000 00:27:05 +0000 (00:27 +0000)
a-z.
(mail-mode): Use [:alnum:] in some regexps.

ChangeLog
lisp/mail/sendmail.el

index 45ef551..c576fee 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-11-11  Dave Love  <fx@gnu.org>
+
+       * config.sub, config.guess: Updated from master source.
+
 2000-11-07  Dave Love  <fx@gnu.org>
 
        * configure.in: Test for mkstemp.
index edc60db..e3992b3 100644 (file)
@@ -316,7 +316,7 @@ actually occur.")
 (defvar mail-font-lock-keywords
   (eval-when-compile
     (let* ((cite-chars "[>|}]")
-          (cite-prefix "A-Za-z")
+          (cite-prefix "[:alpha:]")
           (cite-suffix (concat cite-prefix "0-9_.@-`'\"")))
       (list '("^\\(To\\|Newsgroups\\):" . font-lock-function-name-face)
            '("^\\(B?CC\\|Reply-to\\):" . font-lock-keyword-face)
@@ -473,19 +473,19 @@ Here are commands that move to a header field (and create it if there isn't):
   (make-local-variable 'adaptive-fill-regexp)
   (setq adaptive-fill-regexp
        (concat "[ \t]*\\([-|#;>*]+ *\\|(?[0-9]+[.)] *\\)+"
-               "\\|[ \t]*[-a-z0-9A-Z]*>+[ \t]*"
+               "\\|[ \t]*[-[:alnum:]]*>+[ \t]*"
                "\\|[ \t]*"))
   (make-local-variable 'adaptive-fill-first-line-regexp)
   (setq adaptive-fill-first-line-regexp
        (concat adaptive-fill-first-line-regexp
-               "\\|[ \t]*[-a-z0-9A-Z]*>+[ \t]*"))
+               "\\|[ \t]*[-[:alnum:]]*>+[ \t]*"))
   ;; `-- ' precedes the signature.  `-----' appears at the start of the
   ;; lines that delimit forwarded messages.
   ;; Lines containing just >= 3 dashes, perhaps after whitespace,
   ;; are also sometimes used and should be separators.
   (setq paragraph-start (concat (regexp-quote mail-header-separator)
                                "$\\|\t*\\([-|#;>* ]\\|(?[0-9]+[.)]\\)+$"
-                               "\\|[ \t]*[a-z0-9A-Z]*>+[ \t]*$\\|[ \t]*$\\|"
+                               "\\|[ \t]*[[:alnum:]]*>+[ \t]*$\\|[ \t]*$\\|"
                                "-- $\\|---+$\\|"
                                page-delimiter))
   (setq paragraph-separate paragraph-start)