mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
(gnus-show-traditional-method): Call
gnus-mule-decode-article only when enable-multibyte-characters is non-nil.
This commit is contained in:
parent
4016646482
commit
cb160af852
@ -369,8 +369,10 @@ The function is called from the article buffer."
|
||||
:type 'function)
|
||||
|
||||
(defcustom gnus-show-traditional-method
|
||||
(if (featurep 'mule)
|
||||
'gnus-mule-decode-article
|
||||
(if (and (featurep 'mule)
|
||||
(boundp 'enable-multibyte-characters))
|
||||
(lambda ()
|
||||
(if enable-multibyte-characters (gnus-mule-decode-article)))
|
||||
(lambda ()))
|
||||
"Function to decode ``localized RFC 822 messages''.
|
||||
The function is called from the article buffer."
|
||||
|
Loading…
Reference in New Issue
Block a user