Function: gnus-topic-list
gnus-topic-list is a byte-compiled function defined in
gnus-topic.el.gz.
Signature
(gnus-topic-list &optional TOPOLOGY)
Documentation
Return a list of all topics in the topology.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-topic-list (&optional topology)
"Return a list of all topics in the topology."
(unless topology
(setq topology gnus-topic-topology
gnus-tmp-topics nil))
(push (caar topology) gnus-tmp-topics)
(mapc #'gnus-topic-list (cdr topology))
gnus-tmp-topics)