Function: gnus-summary-article-number
gnus-summary-article-number is an autoloaded and byte-compiled
function defined in gnus-sum.el.gz.
Signature
(gnus-summary-article-number)
Documentation
The article number of the article on the current line.
If there isn't an article number here, then we return the current article number.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
;; Some summary mode macros.
(defsubst gnus-summary-article-number ()
"The article number of the article on the current line.
If there isn't an article number here, then we return the current
article number."
(gnus-summary-skip-intangible)
(or (get-text-property (point) 'gnus-number)
(gnus-summary-last-subject)))