Function: rmail-summary-continue
rmail-summary-continue is an interactive and byte-compiled function
defined in rmailsum.el.gz.
Signature
(rmail-summary-continue)
Documentation
Continue composing outgoing message previously being composed.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rmailsum.el.gz
(defun rmail-summary-continue ()
"Continue composing outgoing message previously being composed."
(interactive)
(let ((window (get-buffer-window rmail-buffer)))
(if window
(select-window window)
(set-buffer rmail-buffer)))
(rmail-start-mail t))