Function: info-other-window
info-other-window is an autoloaded, interactive and byte-compiled
function defined in info.el.gz.
Signature
(info-other-window &optional FILE-OR-NODE BUFFER)
Documentation
Like info but show the Info buffer in another window.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/info.el.gz
;;;###autoload
(defun info-other-window (&optional file-or-node buffer)
"Like `info' but show the Info buffer in another window."
(interactive (list
(if (and current-prefix-arg (not (numberp current-prefix-arg)))
(read-file-name "Info file name: " nil nil t))
(if (numberp current-prefix-arg)
(format "*info*<%s>" current-prefix-arg))))
(info-pop-to-buffer file-or-node buffer t))