Function: gnus-summary-first-article-p
gnus-summary-first-article-p is a byte-compiled function defined in
gnus-sum.el.gz.
Signature
(gnus-summary-first-article-p &optional ARTICLE)
Documentation
Return whether ARTICLE is the first article in the buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-first-article-p (&optional article)
"Return whether ARTICLE is the first article in the buffer."
(if (not (setq article (or article (gnus-summary-article-number))))
nil
(eq article (gnus-data-number (car gnus-newsgroup-data)))))