]> git.eshelyaron.com Git - emacs.git/commitdiff
Rmail: support citations with non-ASCII letters in names
authorEli Zaretskii <eliz@gnu.org>
Wed, 4 Jan 2012 18:51:47 +0000 (20:51 +0200)
committerEli Zaretskii <eliz@gnu.org>
Wed, 4 Jan 2012 18:51:47 +0000 (20:51 +0200)
 lisp/mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
 letters in cite-prefix.

lisp/ChangeLog
lisp/mail/rmail.el

index c852bc00c74877db5f003e1004b98a177a33e55f..1125097feb712b4a0bab55447d71f13ca8517d9f 100644 (file)
@@ -1,3 +1,8 @@
+2012-01-04  Eli Zaretskii  <eliz@gnu.org>
+
+       * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
+       letters in cite-prefix.
+
 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
index 2c94cfdf212139bdd6744a4876b48cb6616430f3..5f0eb2644eede7a1864df6f13156bc5ae6a82a08 100644 (file)
@@ -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)