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