From 91823195c55a0e1ef9c3f9e72338658fd5c5207e Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Sun, 14 Feb 2016 17:47:33 +1100 Subject: [PATCH] Fix problem with wrong encoding of non-ASCII message bodies * lisp/gnus/mml.el (mml-generate-mime-1): Disable multibyteness before encoding the data. --- lisp/gnus/mml.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/gnus/mml.el b/lisp/gnus/mml.el index d9cf15f4970..f9d6cd877b6 100644 --- a/lisp/gnus/mml.el +++ b/lisp/gnus/mml.el @@ -631,6 +631,7 @@ be \"related\" or \"alternate\"." (let ((mm-coding-system-priorities (cons 'utf-8 mm-coding-system-priorities))) (setq charset (mm-encode-body)))) + (mm-disable-multibyte) (setq encoding (mm-body-encoding charset (cdr (assq 'encoding cont)))))) (setq coded (buffer-string))) -- 2.39.2