Function: gnus-topic-jump-to-topic

gnus-topic-jump-to-topic is an interactive and byte-compiled function defined in gnus-topic.el.gz.

Signature

(gnus-topic-jump-to-topic TOPIC)

Documentation

Go to TOPIC.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-topic-jump-to-topic (topic)
  "Go to TOPIC."
  (interactive
   (list (gnus-completing-read "Go to topic" (gnus-topic-list) t))
   gnus-topic-mode)
  (let ((inhibit-read-only t))
    (dolist (topic (gnus-current-topics topic))
      (unless (gnus-topic-goto-topic topic)
	(gnus-topic-goto-missing-topic topic)
	(gnus-topic-display-missing-topic topic))))
  (gnus-topic-goto-topic topic))