1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

(mail-font-lock-keywords): Use [:alpha:], not

a-z.
(mail-mode): Use [:alnum:] in some regexps.
This commit is contained in:
Dave Love 2000-11-12 00:27:05 +00:00
parent e873dcf574
commit 0eafc06c5e
2 changed files with 8 additions and 4 deletions

View File

@ -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.

View 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)