Function: gnus-summary-first-unseen-or-unread-subject

gnus-summary-first-unseen-or-unread-subject is an interactive and byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary-first-unseen-or-unread-subject)

Documentation

Place the point on the subject line of the first unseen and unread article.

If all articles have been seen, on the subject line of the first unread article.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-first-unseen-or-unread-subject ()
  "Place the point on the subject line of the first unseen and unread article.
If all articles have been seen, on the subject line of the first unread
article."
  (interactive nil gnus-summary-mode)
  (prog1
      (unless (when (gnus-summary-first-subject nil nil t)
		(gnus-summary-show-thread)
		(gnus-summary-first-subject nil nil t))
	(when (gnus-summary-first-subject t)
	  (gnus-summary-show-thread)
	  (gnus-summary-first-subject t)))
    (gnus-summary-position-point)))