diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-03-04 17:03:51 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-03-04 17:03:51 +0000 |
commit | c25d9847fd8d3f7e631d4dafc64c70e8db009eb4 (patch) | |
tree | 7a3223d49ff0f0d9cb3e5238a94d1a55bb3630e6 /lisp | |
parent | 926f20041fc4d5cdaa94737117a236be2744cd02 (diff) | |
download | emacs-c25d9847fd8d3f7e631d4dafc64c70e8db009eb4.tar.gz emacs-c25d9847fd8d3f7e631d4dafc64c70e8db009eb4.tar.bz2 emacs-c25d9847fd8d3f7e631d4dafc64c70e8db009eb4.zip |
(rmail-convert-to-babyl-format):
Specify t for UNIBYTE when calling mail-unquote-printable-region.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/mail/rmail.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 4090749d83e..c890ae6e6a0 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -1733,7 +1733,7 @@ It returns t if it got any new messages." (if quoted-printable-header-field-end (save-excursion (unless - (mail-unquote-printable-region header-end (point) nil t) + (mail-unquote-printable-region header-end (point) nil t t) (message "Malformed MIME quoted-printable message")) ;; Change "quoted-printable" to "8bit", ;; to reflect the decoding we just did. @@ -1880,7 +1880,7 @@ It returns t if it got any new messages." (if quoted-printable-header-field-end (save-excursion (unless - (mail-unquote-printable-region header-end (point) nil t) + (mail-unquote-printable-region header-end (point) nil t t) (message "Malformed MIME quoted-printable message")) ;; Change "quoted-printable" to "8bit", @@ -1917,7 +1917,10 @@ It returns t if it got any new messages." (goto-char (point-min)) (while (search-forward "\n\^_" nil t); single char (replace-match "\n^_")))); 2 chars: "^" and "_" - (or (bolp) (newline)) ; in case we lost the final newline. + ;; This is for malformed messages that don't end in newline. + ;; There shouldn't be any, but some users say occasionally + ;; there are some. + (or (bolp) (newline)) (insert ?\^_) (setq last-coding-system-used nil) (or rmail-enable-mime |