Variable: gnus-summary-goto-unread
gnus-summary-goto-unread is a customizable variable defined in
gnus-sum.el.gz.
Value
nil
Documentation
If t, many commands will go to the next unread article.
This applies to marking commands as well as other commands that
"naturally" select the next article, like, for instance, \SPC
at the end of an article.
If nil, the marking commands do NOT go to the next unread article
(they go to the next article instead). If never, commands that
usually go to the next unread article, will go to the next article,
whether it is read or not.
This variable was added, or its default value changed, in Emacs 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defcustom gnus-summary-goto-unread nil
"If t, many commands will go to the next unread article.
This applies to marking commands as well as other commands that
\"naturally\" select the next article, like, for instance, \\`SPC'
at the end of an article.
If nil, the marking commands do NOT go to the next unread article
\(they go to the next article instead). If `never', commands that
usually go to the next unread article, will go to the next article,
whether it is read or not."
:version "24.1"
:group 'gnus-summary-marks
:link '(custom-manual "(gnus)Setting Marks")
:type '(choice (const :tag "off" nil)
(const never)
(sexp :menu-tag "on" t)))