Function: gnus-article-refer-article
gnus-article-refer-article is an interactive and byte-compiled
function defined in gnus-art.el.gz.
Signature
(gnus-article-refer-article)
Documentation
Read article specified by message-id around point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-article-refer-article ()
"Read article specified by message-id around point."
(interactive nil gnus-article-mode)
(save-excursion
(re-search-backward "[ \t]\\|^" (point-at-bol) t)
(re-search-forward "<?news:<?\\|<" (point-at-eol) t)
(if (re-search-forward "[^@ ]+@[^ \t>]+" (point-at-eol) t)
(let ((msg-id (concat "<" (match-string 0) ">")))
(set-buffer gnus-summary-buffer)
(gnus-summary-refer-article msg-id))
(error "No references around point"))))