Function: find-variable-other-window

find-variable-other-window is an autoloaded, interactive and byte-compiled function defined in find-func.el.gz.

Signature

(find-variable-other-window VARIABLE)

Documentation

Find, in another window, 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-window (variable)
  "Find, in another window, 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-window))