Function: gnus-decode-newsgroups
gnus-decode-newsgroups is a byte-compiled function defined in
gnus-util.el.gz.
Signature
(gnus-decode-newsgroups NEWSGROUPS GROUP &optional METHOD)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-util.el.gz
(defun gnus-decode-newsgroups (newsgroups group &optional method)
(require 'gnus-group)
(let ((method (or method (gnus-find-method-for-group group))))
(mapconcat (lambda (group)
(gnus-group-name-decode group (gnus-group-name-charset
method group)))
(message-tokenize-header newsgroups)
",")))