Function: find-function-other-frame
find-function-other-frame is an autoloaded, interactive and
byte-compiled function defined in find-func.el.gz.
Signature
(find-function-other-frame FUNCTION)
Documentation
Find, in another frame, 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-frame (function)
"Find, in another frame, 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-frame))