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

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

This function is obsolete since 9.7; no longer used

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 ~/.emacs.d/elpa/org-9.8.2/org-compat.el
(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."
  (let (pop-up-frames pop-up-windows)
    (apply #'switch-to-buffer-other-window args)))