* lisp/mail/rmail.el (rmail-reply):
Decode subject before matching "Re:" prefix. (Bug#20396)
This commit is contained in:
parent
f3b43fca47
commit
579db5085b
1 changed files with 2 additions and 1 deletions
|
@ -3830,7 +3830,8 @@ use \\[mail-yank-original] to yank the original message into it."
|
|||
;;; (setq cc resent-cc)))
|
||||
;; Add `Re: ' to subject if not there already.
|
||||
(and (stringp subject)
|
||||
(setq subject
|
||||
(setq subject (rfc2047-decode-string subject)
|
||||
subject
|
||||
(concat rmail-reply-prefix
|
||||
(if (let ((case-fold-search t))
|
||||
(string-match rmail-reply-regexp subject))
|
||||
|
|
Loading…
Add table
Reference in a new issue