From cb160af852ac8af0173dd9e6ec728a249d0dfa02 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Wed, 22 Oct 1997 04:34:23 +0000 Subject: [PATCH] (gnus-show-traditional-method): Call gnus-mule-decode-article only when enable-multibyte-characters is non-nil. --- lisp/gnus/gnus-art.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index 64b82e6b97a..6f3b9d00a23 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el @@ -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." -- 2.39.2