Variable: elisp-scope-local-bindings
elisp-scope-local-bindings is a variable defined in elisp-scope.el.gz.
Value
nil
Documentation
Alist of locally bound variables.
This is a list of cons cells (BOUND . BINDER), where BOUND is a symbol
which has a local variable binding in the current context, and BINDER
uniquely identifies the value that BOUND is bound to. Usually, BINDER
is the buffer position in which BOUND is bound, such as a surrounding
let or lambda form.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/elisp-scope.el.gz
(defvar elisp-scope-local-bindings nil
"Alist of locally bound variables.
This is a list of cons cells (BOUND . BINDER), where BOUND is a symbol
which has a local variable binding in the current context, and BINDER
uniquely identifies the value that BOUND is bound to. Usually, BINDER
is the buffer position in which BOUND is bound, such as a surrounding
`let' or `lambda' form.")