Function: gnus-group-prev-unread-group
gnus-group-prev-unread-group is an interactive and byte-compiled
function defined in gnus-group.el.gz.
Signature
(gnus-group-prev-unread-group N)
Documentation
Go to previous N'th unread 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-unread-group (n)
"Go to previous N'th unread newsgroup.
Returns the difference between N and the number of skips actually
done."
(interactive "p" gnus-group-mode)
(gnus-group-next-unread-group (- n)))