Function: gnus-summary-end-of-article
gnus-summary-end-of-article is an interactive and byte-compiled
function defined in gnus-sum.el.gz.
Signature
(gnus-summary-end-of-article)
Documentation
Scroll to the end of the article.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-end-of-article ()
"Scroll to the end of the article."
(interactive nil gnus-summary-mode)
(gnus-summary-select-article)
(gnus-configure-windows 'article)
(gnus-eval-in-buffer-window gnus-article-buffer
(widen)
(goto-char (point-max))
(recenter -3)
(when gnus-break-pages
(gnus-narrow-to-page))))