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
      (when (gnus-summary-first-subject nil nil t)
	(gnus-summary-show-thread)
	(gnus-summary-first-subject nil nil t))
    (gnus-summary-position-point)))