I guess the manual should be the definitive source.
11.9.5 Use of Lexical Scoping
Emacs Lisp can be evaluated in two different modes: in dynamic binding
mode or lexical binding mode. In dynamic binding mode, all local
variables use dynamic scoping, whereas in lexical binding mode
variables that have been declared "special" (i.e., declared with
defvar, defcustom or defconst) use dynamic scoping and all others
use lexical scoping.
-- Variable: lexical-binding
When non-nil, evaluation of Lisp code uses lexical scoping for
non-special local variables instead of dynamic scoping. If nil,
dynamic scoping is used for all local variables. This variable is
typically set for a whole Elisp file via file local variables
(*note File Local Variables::).
-- Function: special-variable-p SYMBOL
Return whether SYMBOL has been declared as a special variable, via
defvar or defconst.
The use of a special variable as a formal argument in a function is
generally discouraged and its behavior in lexical binding mode is
unspecified (it may use lexical scoping sometimes and dynamic scoping
other times).
Functions like symbol-value, boundp, or set only know about
dynamically scoped variables, so you cannot get the value of a lexical
variable via symbol-value and neither can you change it via set.
Another particularity is that code in the body of a defun or
defmacro cannot refer to surrounding lexical variables.
Evaluation of a lambda expression in lexical binding mode will not
just return that lambda expression unchanged, as in the dynamic binding
case, but will instead construct a new object that remembers the
current lexical environment in which that lambda expression was
defined, so that the function body can later be evaluated in the proper
context. Those objects are called "closures". They are also
functions, in the sense that they are accepted by funcall, and they
are represented by a cons cell whose car is the symbol closure.
11.9.5.1 Converting a package to use lexical scoping
Lexical scoping, as currently implemented, does not bring many
significant benefits, unless you are a seasoned functional programmer
addicted to higher-order functions. But its importance will increase
in the future: lexical scoping opens up a lot more opportunities for
optimization, so lexically scoped code is likely to run faster in
future Emacs versions, and it is much more friendly to concurrency,
which we want to add in the near future.
Converting a package to lexical binding is usually pretty easy and
should not break backward compatibility: just add a file-local variable
setting lexical-binding to t and add declarations of the form
(defvar VAR) for every variable which still needs to use dynamic
scoping.
To find which variables need this declaration, the simplest solution
is to check the byte-compiler's warnings. The byte-compiler will
usually find those variables either because they are used outside of a
let-binding (leading to warnings about reference or assignment to "free
variable VAR") or because they are let-bound but not used within the
let-binding (leading to warnings about "unused lexical variable VAR").
In cases where a dynamically scoped variable was bound as a function
argument, you will also need to move this binding to a let. These
cases are also flagged by the byte-compiler.
To silence byte-compiler warnings about unused variables, just use a
variable name that start with an underscore, which the byte-compiler
interpret as an indication that this is a variable known not to be used.
In most cases, the resulting code will then work with either setting
of lexical-binding, so it can still be used with older Emacsen (which
will simply ignore the lexical-binding variable setting).
ito search the index. – event_jr Oct 5 '11 at 5:49