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

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

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 /usr/src/emacs/lisp/org/org-compat.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."
  (let (pop-up-frames pop-up-windows)
    (apply #'switch-to-buffer-other-window args)))