Function: gnus-current-topics

gnus-current-topics is a byte-compiled function defined in gnus-topic.el.gz.

Signature

(gnus-current-topics &optional TOPIC)

Documentation

Return a list of all current topics, lowest in hierarchy first.

If TOPIC, start with that topic.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-current-topics (&optional topic)
  "Return a list of all current topics, lowest in hierarchy first.
If TOPIC, start with that topic."
  (let ((topic (or topic (gnus-current-topic)))
	topics)
    (while topic
      (push topic topics)
      (setq topic (gnus-topic-parent-topic topic)))
    (nreverse topics)))