Function: gnus-tree-article-region
gnus-tree-article-region is a byte-compiled function defined in
gnus-salt.el.gz.
Signature
(gnus-tree-article-region ARTICLE)
Documentation
Return a cons with BEG and END of the article region.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-salt.el.gz
(defun gnus-tree-article-region (article)
"Return a cons with BEG and END of the article region."
(let ((pos (text-property-any
(point-min) (point-max) 'gnus-number article)))
(when pos
(cons pos (next-single-property-change pos 'gnus-number)))))