Function: nnselect-artlist-article
nnselect-artlist-article is a byte-compiled function defined in
nnselect.el.gz.
Signature
(nnselect-artlist-article ARTLIST N)
Documentation
Return from ARTLIST the Nth artitem (counting starting at 1).
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnselect.el.gz
(define-inline nnselect-artlist-article (artlist n)
"Return from ARTLIST the Nth artitem (counting starting at 1)."
(inline-quote (when (> ,n 0)
(elt ,artlist (1- ,n)))))