Variable: gnus-group-name-charset-method-alist

gnus-group-name-charset-method-alist is a customizable variable defined in gnus-group.el.gz.

Value

nil

Documentation

Alist of method and the charset for group names.

For example:
    (((nntp "news.com.cn") . cn-gb-2312))

This variable was added, or its default value changed, in Emacs 21.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defcustom gnus-group-name-charset-method-alist nil
  "Alist of method and the charset for group names.

For example:
    (((nntp \"news.com.cn\") . cn-gb-2312))"
  :version "21.1"
  :group 'gnus-charset
  :type '(repeat (cons (sexp :tag "Method") (symbol :tag "Charset"))))