Function: compose-mail-other-window
compose-mail-other-window is an interactive and byte-compiled function
defined in simple.el.gz.
Signature
(compose-mail-other-window &optional TO SUBJECT OTHER-HEADERS CONTINUE YANK-ACTION SEND-ACTIONS RETURN-ACTION)
Documentation
Like C-x m (compose-mail), but edit the outgoing message in another window.
If this command needs to split the current window, it by default obeys
the user options split-height-threshold and split-width-threshold,
when it decides whether to split the window horizontally or vertically.
Probably introduced at or before Emacs version 20.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun compose-mail-other-window (&optional to subject other-headers continue
yank-action send-actions
return-action)
"Like \\[compose-mail], but edit the outgoing message in another window.
If this command needs to split the current window, it by default obeys
the user options `split-height-threshold' and `split-width-threshold',
when it decides whether to split the window horizontally or vertically."
(interactive (list nil nil nil current-prefix-arg))
(compose-mail to subject other-headers continue
'switch-to-buffer-other-window yank-action send-actions
return-action))