Function: gnus-group-topic
gnus-group-topic is a byte-compiled function defined in
gnus-topic.el.gz.
Signature
(gnus-group-topic GROUP)
Documentation
Return the topic GROUP is a member of.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-group-topic (group)
"Return the topic GROUP is a member of."
(let ((alist gnus-topic-alist)
out)
(while alist
(when (member group (cdar alist))
(setq out (caar alist)
alist nil))
(setq alist (cdr alist)))
out))