Function: gnus-summary-mail-other-window
gnus-summary-mail-other-window is an autoloaded, interactive and
byte-compiled function defined in gnus-msg.el.gz.
Signature
(gnus-summary-mail-other-window &optional ARG)
Documentation
Start composing a mail in another window.
Use the posting of the current group by default. If ARG, don't do that. If ARG is 1, prompt for group name to find the posting style.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-msg.el.gz
(defun gnus-summary-mail-other-window (&optional arg)
"Start composing a mail in another window.
Use the posting of the current group by default.
If ARG, don't do that. If ARG is 1, prompt for group name to find the
posting style."
(interactive "P" gnus-summary-mode)
(let* (;;(group gnus-newsgroup-name)
;; make sure last viewed article doesn't affect posting styles:
(gnus-article-copy)
;; (buffer (current-buffer))
(gnus-newsgroup-name
(if arg
(if (= 1 (prefix-numeric-value arg))
(gnus-group-completing-read "Use group"
nil
(gnus-read-active-file-p))
"")
gnus-newsgroup-name)))
(gnus-setup-message 'message (message-mail))))