Function: find-function-other-window
find-function-other-window is an autoloaded, interactive and
byte-compiled function defined in find-func.el.gz.
Signature
(find-function-other-window FUNCTION)
Documentation
Find, in another window, the definition of FUNCTION near point.
See find-function for more details.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/find-func.el.gz
;;;###autoload
(defun find-function-other-window (function)
"Find, in another window, the definition of FUNCTION near point.
See `find-function' for more details."
(interactive (find-function-read))
(find-function-do-it function nil 'switch-to-buffer-other-window))