Variable: gnus-group-name-charset-group-alist
gnus-group-name-charset-group-alist is a customizable variable defined
in gnus-group.el.gz.
Value
((".*" . utf-8))
Documentation
Alist of group regexp and the charset for group names.
For example:
(("\\.com\\.cn:" . cn-gb-2312))
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defcustom gnus-group-name-charset-group-alist
(if (mm-coding-system-p 'utf-8)
'((".*" . utf-8))
nil)
"Alist of group regexp and the charset for group names.
For example:
((\"\\.com\\.cn:\" . cn-gb-2312))"
:group 'gnus-charset
:type '(repeat (cons (regexp :tag "Group") (symbol :tag "Charset"))))