Function: gnus-summary-first-unread-subject

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

Signature

(gnus-summary-first-unread-subject)

Documentation

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

Return nil if there are no unread articles.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-first-unread-subject ()
  "Place the point on the subject line of the first unread article.
Return nil if there are no unread articles."
  (interactive nil gnus-summary-mode)
  (prog1
      (gnus-summary--goto-and-possibly-unhide t)
    (gnus-summary-position-point)))