Function: gnus-group-next-group

gnus-group-next-group is an interactive and byte-compiled function defined in gnus-group.el.gz.

Signature

(gnus-group-next-group N &optional SILENT)

Documentation

Go to next N'th newsgroup.

If N is negative, search backward instead. 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-next-group (n &optional silent)
  "Go to next N'th newsgroup.
If N is negative, search backward instead.
Returns the difference between N and the number of skips actually
done."
  (interactive "p" gnus-group-mode)
  (gnus-group-next-unread-group n t nil silent))