mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-07 14:31:41 -08:00
Fix problem with non-ASCII characters in nnmaildir
* lisp/gnus/nnmaildir.el (nnmaildir-request-article): Enable multipart 8bit-content-transfer-encoded files to be displayed correctly by reading as `raw-text' instead of having Emacs (incorrectly) decode the files (bug#44307). Copyright-paperwork-exempt: yes
This commit is contained in:
parent
7355209f53
commit
89f1634afc
1 changed files with 2 additions and 1 deletions
|
|
@ -1351,7 +1351,8 @@ This variable is set by `nnmaildir-request-article'.")
|
|||
(throw 'return nil))
|
||||
(with-current-buffer (or to-buffer nntp-server-buffer)
|
||||
(erase-buffer)
|
||||
(nnheader-insert-file-contents nnmaildir-article-file-name))
|
||||
(let ((coding-system-for-read mm-text-coding-system))
|
||||
(mm-insert-file-contents nnmaildir-article-file-name)))
|
||||
(cons gname num-msgid))))
|
||||
|
||||
(defun nnmaildir-request-post (&optional _server)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue