Function: gnus-summary-expand-window
gnus-summary-expand-window is an interactive and byte-compiled
function defined in gnus-sum.el.gz.
Signature
(gnus-summary-expand-window &optional ARG)
Documentation
Make the summary buffer take up the entire Emacs frame.
Given a prefix, will force an article buffer configuration.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
;; Walking around summary lines with displaying articles.
(defun gnus-summary-expand-window (&optional arg)
"Make the summary buffer take up the entire Emacs frame.
Given a prefix, will force an `article' buffer configuration."
(interactive "P" gnus-summary-mode)
(if arg
(gnus-configure-windows 'article 'force)
(gnus-configure-windows 'summary 'force)))