gnus: handle more non-ascii
Fix character decoding issues for some (but not all) messages. This to Chris00 for this work on this!
This commit is contained in:
@ -366,10 +366,12 @@ article-mode."
|
|||||||
(unless marked-read
|
(unless marked-read
|
||||||
;; when we're being marked as read, no need to start rendering the messages; just the minimal
|
;; when we're being marked as read, no need to start rendering the messages; just the minimal
|
||||||
;; so (update... ) can find us.
|
;; so (update... ) can find us.
|
||||||
(insert-file-contents path)
|
(mm-disable-multibyte)
|
||||||
|
(insert-file-contents-literally path)
|
||||||
(setq
|
(setq
|
||||||
gnus-summary-buffer (get-buffer-create " *appease-gnus*")
|
gnus-summary-buffer (get-buffer-create " *appease-gnus*")
|
||||||
gnus-original-article-buffer (current-buffer))
|
gnus-original-article-buffer (current-buffer))
|
||||||
|
(mm-enable-multibyte)
|
||||||
(article-de-base64-unreadable)
|
(article-de-base64-unreadable)
|
||||||
(article-de-quoted-unreadable)
|
(article-de-quoted-unreadable)
|
||||||
(gnus-article-prepare-display)
|
(gnus-article-prepare-display)
|
||||||
|
|||||||
Reference in New Issue
Block a user