diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2010-01-22 11:43:54 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2010-01-22 11:43:54 -0500 |
commit | c893016b07f33eb8d56e1011245fe59a67cb4ee0 (patch) | |
tree | 8e00fe18bf610d186ce51caee9a0efb646a786aa /lisp/mail/mail-utils.el | |
parent | 9425f8e1b3b40adc297376007992cb680ef5e0ec (diff) | |
download | emacs-c893016b07f33eb8d56e1011245fe59a67cb4ee0.tar.gz |
* mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
just because we see "encoding: 8bit".
* mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
Diffstat (limited to 'lisp/mail/mail-utils.el')
-rw-r--r-- | lisp/mail/mail-utils.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/mail/mail-utils.el b/lisp/mail/mail-utils.el index 3bca0b23a8c..5fad3554ae5 100644 --- a/lisp/mail/mail-utils.el +++ b/lisp/mail/mail-utils.el @@ -133,6 +133,8 @@ If NOERROR is non-nil, return t if successful. If UNIBYTE is non-nil, insert converted characters as unibyte. That is useful if you are going to character code decoding afterward, as Rmail does." + ;; FIXME: `unibyte' should always be non-nil, and the iso-latin-1 + ;; specific handling should be removed (or moved elsewhere and generalized). (interactive "r\nP") (let (failed) (save-match-data |