diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/mail/sendmail.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cc27b8d15c8..2067128fbe8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-05-27 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * mail/sendmail.el (mail-encode-header): Avoid double encoding by | ||
| 4 | let-binding rfc2047-encode-encoded-words to nil. | ||
| 5 | |||
| 1 | 2011-05-27 Glenn Morris <rgm@gnu.org> | 6 | 2011-05-27 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * mail/emacsbug.el: Don't require url-util. | 8 | * mail/emacsbug.el: Don't require url-util. |
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index c6cd4c75ebd..60f3062ea7b 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el | |||
| @@ -1022,7 +1022,8 @@ Return non-nil if and only if some part of the header is encoded." | |||
| 1022 | (if (and selected (coding-system-get selected :mime-charset)) | 1022 | (if (and selected (coding-system-get selected :mime-charset)) |
| 1023 | (cons selected mm-coding-system-priorities) | 1023 | (cons selected mm-coding-system-priorities) |
| 1024 | mm-coding-system-priorities)) | 1024 | mm-coding-system-priorities)) |
| 1025 | (tick (buffer-chars-modified-tick))) | 1025 | (tick (buffer-chars-modified-tick)) |
| 1026 | (rfc2047-encode-encoded-words nil)) | ||
| 1026 | (rfc2047-encode-message-header) | 1027 | (rfc2047-encode-message-header) |
| 1027 | (= tick (buffer-chars-modified-tick))))) | 1028 | (= tick (buffer-chars-modified-tick))))) |
| 1028 | 1029 | ||