Function: gnus-warp-to-article
gnus-warp-to-article is an interactive and byte-compiled function
defined in gnus-int.el.gz.
Signature
(gnus-warp-to-article)
Documentation
Look up the current article in the group where it originated.
This command only makes sense for groups shows articles gathered from other groups -- for instance, search results and the like.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-int.el.gz
(defun gnus-warp-to-article ()
"Look up the current article in the group where it originated.
This command only makes sense for groups shows articles gathered
from other groups -- for instance, search results and the like."
(interactive nil gnus-summary-mode)
(let ((gnus-command-method
(gnus-find-method-for-group gnus-newsgroup-name)))
(or
(when (gnus-check-backend-function
'warp-to-article (car gnus-command-method))
(funcall (gnus-get-function gnus-command-method 'warp-to-article)))
(and (bound-and-true-p gnus-registry-enabled)
(gnus-try-warping-via-registry)))))