Function: gnus-summary-last-article-p
gnus-summary-last-article-p is a byte-compiled function defined in
gnus-sum.el.gz.
Signature
(gnus-summary-last-article-p &optional ARTICLE)
Documentation
Return whether ARTICLE is the last article in the buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-last-article-p (&optional article)
"Return whether ARTICLE is the last article in the buffer."
(if (not (setq article (or article (gnus-summary-article-number))))
;; All non-existent numbers are the last article. :-)
t
(not (cdr (gnus-data-find-list article)))))