Function: gnus-summary-first-unseen-subject
gnus-summary-first-unseen-subject is an interactive and byte-compiled
function defined in gnus-sum.el.gz.
Signature
(gnus-summary-first-unseen-subject)
Documentation
Place the point on the subject line of the first unseen article.
Return nil if there are no unseen articles.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-first-unseen-subject ()
"Place the point on the subject line of the first unseen article.
Return nil if there are no unseen articles."
(interactive nil gnus-summary-mode)
(prog1
(gnus-summary--goto-and-possibly-unhide)
(gnus-summary-position-point)))