Function: message-news-other-window

message-news-other-window is an autoloaded, interactive and byte-compiled function defined in message.el.gz.

Signature

(message-news-other-window &optional NEWSGROUPS SUBJECT)

Documentation

Start editing a news article to be sent.

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.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
;;;###autoload
(defun message-news-other-window (&optional newsgroups subject)
  "Start editing a news article to be sent.
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)
  (message-pop-to-buffer (message-buffer-name "posting" nil newsgroups)
			 'switch-to-buffer-other-window)
  (let ((message-this-is-news t))
    (message-setup `((Newsgroups . ,(or newsgroups ""))
		     (Subject . ,(or subject ""))))))