Function: gnus-summary-show-complete-article
gnus-summary-show-complete-article is an interactive and byte-compiled
function defined in gnus-sum.el.gz.
Signature
(gnus-summary-show-complete-article)
Documentation
Show a complete version of the current article.
This is only useful if you're looking at a partial version of the article currently.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-show-complete-article ()
"Show a complete version of the current article.
This is only useful if you're looking at a partial version of the
article currently."
(interactive nil gnus-summary-mode)
(let ((gnus-keep-backlog nil)
(gnus-use-cache nil)
(gnus-agent nil)
(variable (intern
(format "%s-fetch-partial-articles"
(car (gnus-find-method-for-group
gnus-newsgroup-name)))
obarray))
old-val)
(unwind-protect
(progn
(setq old-val (symbol-value variable))
(set variable nil)
(gnus-flush-original-article-buffer)
(gnus-summary-show-article))
(set variable old-val))))