Function: gnus-summary-news-other-window
gnus-summary-news-other-window is an autoloaded, interactive and
byte-compiled function defined in gnus-msg.el.gz.
Signature
(gnus-summary-news-other-window &optional ARG)
Documentation
Start composing a news in another window.
Post to the current group by default. If ARG, don't do that. If ARG is 1, prompt for group name to post to.
This function prepares a news even when using mail groups. This is useful
for posting messages to mail groups without actually sending them over the
network. The corresponding back end must have a request-post method.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-msg.el.gz
(defun gnus-summary-news-other-window (&optional arg)
"Start composing a news in another window.
Post to the current group by default.
If ARG, don't do that. If ARG is 1, prompt for group name to post to.
This function prepares a news even when using mail groups. This is useful
for posting messages to mail groups without actually sending them over the
network. The corresponding back end must have a `request-post' method."
(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
(progn
(message-news (gnus-group-real-name gnus-newsgroup-name))
(setq-local gnus-discouraged-post-methods
(remove
(car (gnus-find-method-for-group gnus-newsgroup-name))
gnus-discouraged-post-methods))))))