1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-11 09:20:51 +00:00

sendmail mode quoting bug fix.

This commit is contained in:
Richard M. Stallman 2012-03-10 04:11:22 -05:00
parent 607e855510
commit 1694e6c1bb
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2012-03-10 Richard Stallman <rms@gnu.org>
* mail/sendmail.el (mail-encode-header):
Set rfc2047-encode-encoded-words.
* mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
* mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead

View File

@ -1085,7 +1085,9 @@ Return non-nil if and only if some part of the header is encoded."
(cons selected mm-coding-system-priorities)
mm-coding-system-priorities))
(tick (buffer-chars-modified-tick))
(rfc2047-encode-encoded-words nil))
;; rms: this proved necessary, but I don't recall why.
;; Can anyone determine why, and state it here?
(rfc2047-encode-encoded-words t))
(rfc2047-encode-message-header)
(= tick (buffer-chars-modified-tick)))))