diff options
| author | Kenichi Handa | 1997-10-22 04:34:23 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-10-22 04:34:23 +0000 |
| commit | cb160af852ac8af0173dd9e6ec728a249d0dfa02 (patch) | |
| tree | d83aae8d5f677066921c7c8bc68e59c8ce1cf254 | |
| parent | 4016646482ad25c69f01faab7ca78577d2c81771 (diff) | |
| download | emacs-cb160af852ac8af0173dd9e6ec728a249d0dfa02.tar.gz emacs-cb160af852ac8af0173dd9e6ec728a249d0dfa02.zip | |
(gnus-show-traditional-method): Call
gnus-mule-decode-article only when enable-multibyte-characters is
non-nil.
| -rw-r--r-- | lisp/gnus/gnus-art.el | 6 |
1 files 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." | |||
| 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." |