Variable: gnus-decode-encoded-word-methods
gnus-decode-encoded-word-methods is a variable defined in
gnus-sum.el.gz.
Value
(mail-decode-encoded-word-string)
Documentation
List of methods used to decode encoded words.
This variable is a list of FUNCTION or (REGEXP . FUNCTION). If item
is FUNCTION, FUNCTION will be apply to all newsgroups. If item is a
(REGEXP . FUNCTION), FUNCTION will be applied only to the newsgroups
whose names match REGEXP.
For example:
(("chinese" . gnus-decode-encoded-word-string-by-guess)
mail-decode-encoded-word-string
("chinese" . rfc1843-decode-string))
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
;; MIME stuff.
(defvar gnus-decode-encoded-word-methods
'(mail-decode-encoded-word-string)
"List of methods used to decode encoded words.
This variable is a list of FUNCTION or (REGEXP . FUNCTION). If item
is FUNCTION, FUNCTION will be apply to all newsgroups. If item is a
\(REGEXP . FUNCTION), FUNCTION will be applied only to the newsgroups
whose names match REGEXP.
For example:
\((\"chinese\" . gnus-decode-encoded-word-string-by-guess)
mail-decode-encoded-word-string
(\"chinese\" . rfc1843-decode-string))")