Function: gnus-topic-goto-previous-topic
gnus-topic-goto-previous-topic is an interactive and byte-compiled
function defined in gnus-topic.el.gz.
Signature
(gnus-topic-goto-previous-topic N)
Documentation
Go to the N'th previous topic.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-topic-goto-previous-topic (n)
"Go to the N'th previous topic."
(interactive "p" gnus-topic-mode)
(gnus-topic-goto-next-topic (- n)))