Function: rmail-summary-wipe
rmail-summary-wipe is an interactive and byte-compiled function
defined in rmailsum.el.gz.
Signature
(rmail-summary-wipe)
Documentation
Kill and wipe away Rmail summary, remaining within Rmail.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rmailsum.el.gz
(defun rmail-summary-wipe ()
"Kill and wipe away Rmail summary, remaining within Rmail."
(interactive)
(with-current-buffer rmail-buffer (setq rmail-summary-buffer nil))
(let ((local-rmail-buffer rmail-buffer))
(kill-buffer (current-buffer))
;; Delete window if not only one.
(if (not (eq (selected-window) (next-window nil 'no-minibuf)))
(delete-window))
;; Switch windows to the rmail buffer, or switch to it in this window.
(rmail-pop-to-buffer local-rmail-buffer)))