Function: gnus-group-prev-group
gnus-group-prev-group is an interactive and byte-compiled function
defined in gnus-group.el.gz.
Signature
(gnus-group-prev-group N)
Documentation
Go to previous N'th newsgroup.
Returns the difference between N and the number of skips actually done.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-prev-group (n)
"Go to previous N'th newsgroup.
Returns the difference between N and the number of skips actually
done."
(interactive "p" gnus-group-mode)
(gnus-group-next-unread-group (- n) t))