Function: message-news-other-frame
message-news-other-frame is an autoloaded, interactive and
byte-compiled function defined in message.el.gz.
Signature
(message-news-other-frame &optional NEWSGROUPS SUBJECT)
Documentation
Start editing a news article to be sent.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
;;;###autoload
(defun message-news-other-frame (&optional newsgroups subject)
"Start editing a news article to be sent."
(interactive)
(message-pop-to-buffer (message-buffer-name "posting" nil newsgroups)
'switch-to-buffer-other-frame)
(let ((message-this-is-news t))
(message-setup `((Newsgroups . ,(or newsgroups ""))
(Subject . ,(or subject ""))))))