aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii <[email protected]>2012-01-04 20:51:47 +0200
committerEli Zaretskii <[email protected]>2012-01-04 20:51:47 +0200
commita7183d7c4625f88a8754061b02674d718e64f48f (patch)
treed929359a1e14b961f523e986e7b570eae595a67a
parent14e1337f8462d1ca2e4af69de9fba58ddabd0274 (diff)
Rmail: support citations with non-ASCII letters in names
lisp/mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII letters in cite-prefix.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/mail/rmail.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c852bc00c7..1125097feb 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2012-01-04 Eli Zaretskii <[email protected]>
+
+ * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
+ letters in cite-prefix.
+
2012-01-03 Lars Magne Ingebrigtsen <[email protected]>
* mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index 2c94cfdf21..5f0eb2644e 100644
--- a/lisp/mail/rmail.el
+++ b/lisp/mail/rmail.el
@@ -791,7 +791,7 @@ that knows the exact ordering of the \\( \\) subexpressions.")
;; These are all matched case-insensitively.
(eval-when-compile
(let* ((cite-chars "[>|}]")
- (cite-prefix "a-z")
+ (cite-prefix "[:alpha:]")
(cite-suffix (concat cite-prefix "0-9_.@-`'\"")))
(list '("^\\(From\\|Sender\\|Resent-From\\):"
. 'rmail-header-name)