Function: gnus-summary-first-article
gnus-summary-first-article is an interactive and byte-compiled
function defined in gnus-sum.el.gz.
Signature
(gnus-summary-first-article)
Documentation
Select the first article.
Return nil if there are no articles.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-first-article ()
"Select the first article.
Return nil if there are no articles."
(interactive nil gnus-summary-mode)
(prog1
(when (gnus-summary-first-subject)
(gnus-summary-show-thread)
(gnus-summary-first-subject)
(gnus-summary-display-article (gnus-summary-article-number)))
(gnus-summary-position-point)))