diff options
| author | Glenn Morris | 2011-05-27 00:18:15 -0700 |
|---|---|---|
| committer | Glenn Morris | 2011-05-27 00:18:15 -0700 |
| commit | be520aca79dd429d55012a1916bdc97f06773fc5 (patch) | |
| tree | fc2d1c1ed368dbeb426686dff92350ad881c4c28 | |
| parent | 5ec8a862176d3d437407cad69bf4fa65697a081b (diff) | |
| parent | c92a1e54c44d3939a1ac57b45def3424d0e4cf13 (diff) | |
| download | emacs-be520aca79dd429d55012a1916bdc97f06773fc5.tar.gz emacs-be520aca79dd429d55012a1916bdc97f06773fc5.zip | |
Merge from emacs-23; up to 2010-06-12T10:58:54Z!romain@orebokech.com.
| -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 | ||