Function: gnus-parameter-ignored-charsets

gnus-parameter-ignored-charsets is a byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-parameter-ignored-charsets NAME)

Documentation

Return the ignored charsets of GROUP.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(gnus-define-group-parameter
 ignored-charsets
 :type list
 :function-document
 "Return the ignored charsets of GROUP."
 :variable gnus-group-ignored-charsets-alist
 :variable-default
 '(("alt\\.chinese\\.text" iso-8859-1))
 :variable-document
 "Alist of regexps (to match group names) and charsets that should be ignored.
When these charsets are used in the \"charset\" parameter, the
default charset will be used instead."
 :variable-group gnus-charset
 :variable-type '(repeat (cons (regexp :tag "Group")
			       (repeat symbol)))
 :parameter-type '(choice :tag "Ignored charsets"
			  :value nil
			  (repeat (symbol)))
 :parameter-document       "\
List of charsets that should be ignored.

When these charsets are used in the \"charset\" parameter, the
default charset will be used instead.")