Fix a `string-to-multibyte' in Gnus
* lisp/gnus/gnus-art.el (gnus-request-article-this-buffer): The original article buffer is multibyte, and we're inserting into the article buffer, which is also multibyte, so the `string-to-multibyte' here should be unnecessary?
This commit is contained in:
parent
9f767b3ec8
commit
679a433744
1 changed files with 2 additions and 3 deletions
|
@ -7037,9 +7037,8 @@ If given a prefix, show the hidden text instead."
|
|||
;; equivalent of string-make-multibyte which amount to decoding
|
||||
;; with locale-coding-system, causing failure of
|
||||
;; subsequent decoding.
|
||||
(insert (string-to-multibyte
|
||||
(with-current-buffer gnus-original-article-buffer
|
||||
(buffer-substring (point-min) (point-max)))))
|
||||
(insert (with-current-buffer gnus-original-article-buffer
|
||||
(buffer-substring (point-min) (point-max))))
|
||||
'article)
|
||||
;; Check the backlog.
|
||||
((and gnus-keep-backlog
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue