Function: org-switch-to-buffer-other-window

org-switch-to-buffer-other-window is a byte-compiled function defined in org-macs.el.gz.

Signature

(org-switch-to-buffer-other-window &rest ARGS)

Documentation

Switch to buffer in a second window on the current frame.

In particular, do not allow pop-up frames. Returns the newly created buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
(defun org-switch-to-buffer-other-window (&rest args)
  "Switch to buffer in a second window on the current frame.
In particular, do not allow pop-up frames.
Returns the newly created buffer."
  (org-no-popups (apply #'switch-to-buffer-other-window args)))