Function: gnus-group-name-decode
gnus-group-name-decode is an autoloaded and byte-compiled function
defined in gnus-group.el.gz.
Signature
(gnus-group-name-decode STRING CHARSET)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-name-decode (string charset)
;; Fixme: Don't decode in unibyte mode.
(if (and string charset)
(decode-coding-string string charset)
string))