Function: gnus-summary-next-subject
gnus-summary-next-subject is an interactive and byte-compiled function
defined in gnus-sum.el.gz.
Signature
(gnus-summary-next-subject N &optional UNREAD DONT-DISPLAY)
Documentation
Go to next N'th summary line.
If N is negative, go to the previous N'th subject line. If UNREAD is non-nil, only unread articles are selected. The difference between N and the actual number of steps taken is returned.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-next-subject (n &optional unread dont-display)
"Go to next N'th summary line.
If N is negative, go to the previous N'th subject line.
If UNREAD is non-nil, only unread articles are selected.
The difference between N and the actual number of steps taken is
returned."
(interactive "p" gnus-summary-mode)
(let ((backward (< n 0))
(n (abs n)))
(while (and (> n 0)
(if backward
(gnus-summary-find-prev unread)
(gnus-summary-find-next unread)))
(unless (zerop (setq n (1- n)))
(gnus-summary-show-thread)))
(when (/= 0 n)
(gnus-message 7 "No more%s articles"
(if unread " unread" "")))
(unless dont-display
(gnus-summary-recenter)
(gnus-summary-position-point))
n))