From: Kenichi Handa Date: Wed, 22 Oct 1997 04:34:23 +0000 (+0000) Subject: (gnus-show-traditional-method): Call X-Git-Tag: emacs-20.3~2954 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cb160af852ac8af0173dd9e6ec728a249d0dfa02;p=emacs.git (gnus-show-traditional-method): Call gnus-mule-decode-article only when enable-multibyte-characters is non-nil. --- 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."