Function: clone-indirect-buffer-other-window

clone-indirect-buffer-other-window is an interactive and byte-compiled function defined in simple.el.gz.

Signature

(clone-indirect-buffer-other-window NEWNAME DISPLAY-FLAG &optional NORECORD)

Documentation

Like clone-indirect-buffer but display in another window.

Probably introduced at or before Emacs version 21.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun clone-indirect-buffer-other-window (newname display-flag &optional norecord)
  "Like `clone-indirect-buffer' but display in another window."
  (interactive
   (progn
     (if (get major-mode 'no-clone-indirect)
	 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
     (list (if current-prefix-arg
	       (read-buffer "Name of indirect buffer: " (current-buffer)))
	   t)))
  (let ((pop-up-windows t))
    (clone-indirect-buffer newname display-flag norecord)))