summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2018-04-14 23:17:24 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2018-04-14 23:17:24 +0200
commit9f767b3ec83a89706bceb5e0a9c778092a7dfe5d (patch)
treecb778f6d5e768c8900bcabc4b13c79d722dcff0e
parent196dc887d8ba324df01d594d5eda61591e251ff0 (diff)
downloademacs-9f767b3ec83a89706bceb5e0a9c778092a7dfe5d.tar.gz
Fix a string-as-unibyte in Gnus
* lisp/gnus/gnus-art.el (gnus-article-browse-html-parts): Get rid of a string-as-unibyte.
-rw-r--r--lisp/gnus/gnus-art.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el
index ed6e77fb329..c153d94f3c3 100644
--- a/lisp/gnus/gnus-art.el
+++ b/lisp/gnus/gnus-art.el
@@ -2921,7 +2921,8 @@ message header will be added to the bodies of the \"text/html\" parts."
(encode-coding-string
title coding))
body content))
- (setq eheader (string-as-unibyte (buffer-string))
+ (setq eheader (encode-coding-string
+ (buffer-string) 'utf-8)
body content)))
(erase-buffer)
(mm-disable-multibyte)