Function: find-variable-at-point
find-variable-at-point is an autoloaded, interactive and byte-compiled
function defined in find-func.el.gz.
Signature
(find-variable-at-point)
Documentation
Find directly the variable at point in the other window.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/find-func.el.gz
;;;###autoload
(defun find-variable-at-point ()
"Find directly the variable at point in the other window."
(interactive)
(let ((symb (variable-at-point)))
(when (and symb (not (equal symb 0)))
(find-variable-other-window symb))))