Variable: gnus-summary-show-article-charset-alist
gnus-summary-show-article-charset-alist is a customizable variable
defined in gnus-sum.el.gz.
Value
nil
Documentation
Alist of number and charset.
The article will be shown with the charset corresponding to the numbered argument. For example: ((1 . cn-gb-2312) (2 . big5)).
This variable was added, or its default value changed, in Emacs 21.1.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defcustom gnus-summary-show-article-charset-alist
nil
"Alist of number and charset.
The article will be shown with the charset corresponding to the
numbered argument.
For example: ((1 . cn-gb-2312) (2 . big5))."
:version "21.1"
:type '(repeat (cons (number :tag "Argument" 1)
(symbol :tag "Charset")))
:group 'gnus-charset)