Function: gnus-collect-urls-from-article
gnus-collect-urls-from-article is a byte-compiled function defined in
gnus-sum.el.gz.
Signature
(gnus-collect-urls-from-article)
Documentation
Select the article and return the list of URLs in it.
See gnus-collect-urls.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-collect-urls-from-article ()
"Select the article and return the list of URLs in it.
See `gnus-collect-urls'."
(gnus-summary-select-article)
(gnus-with-article-buffer
(article-goto-body)
;; Back up a char, in case body starts with a button.
(backward-char)
(gnus-collect-urls)))