Function: gnus-group-next-unread-group-same-level

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

Signature

(gnus-group-next-unread-group-same-level N)

Documentation

Go to next N'th unread newsgroup on the same level.

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-unread-group-same-level (n)
  "Go to next N'th unread newsgroup on the same level.
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 (gnus-group-group-level))
  (gnus-group-position-point))