comparison lisp/gnus/gnus-art.el @ 20119:c62cc873509f

(gnus-show-traditional-method): Call gnus-mule-decode-article only when enable-multibyte-characters is non-nil.
author Kenichi Handa <handa@m17n.org>
date Wed, 22 Oct 1997 04:34:23 +0000
parents 2c30b1fb6409
children 900aecbf7d38
comparison
equal deleted inserted replaced
20118:44afc898c138 20119:c62cc873509f
367 The function is called from the article buffer." 367 The function is called from the article buffer."
368 :group 'gnus-article-mime 368 :group 'gnus-article-mime
369 :type 'function) 369 :type 'function)
370 370
371 (defcustom gnus-show-traditional-method 371 (defcustom gnus-show-traditional-method
372 (if (featurep 'mule) 372 (if (and (featurep 'mule)
373 'gnus-mule-decode-article 373 (boundp 'enable-multibyte-characters))
374 (lambda ()
375 (if enable-multibyte-characters (gnus-mule-decode-article)))
374 (lambda ())) 376 (lambda ()))
375 "Function to decode ``localized RFC 822 messages''. 377 "Function to decode ``localized RFC 822 messages''.
376 The function is called from the article buffer." 378 The function is called from the article buffer."
377 :group 'gnus-article-mime 379 :group 'gnus-article-mime
378 :type 'function) 380 :type 'function)