Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Emacs 24 now has lexically-scoped variables. It also still has dynamically-scoped variables, of course. Now that it has both, I'm quite confused about when a variable will have which kind of scope. There's a lexical-binding variable that controls when lexical binding is enabled, and I think I read something about defvar now declaring a dynamically-scoped variable, but in general I'm pretty lost. Is there a good explanation somewhere of Emacs 24's new scoping rules? Or put another way, when I look at a variable in Emacs Lisp code written for Emacs 24, how do I tell what scope that variable is using?

share|improve this question
2  
If you've installed Emacs 24, this information is available in the info. Open the "Emacs Lisp" node and hit i to search the index. – event_jr Oct 5 '11 at 5:49
I have both 23 and 24 installed, so it was a little confusing. There was both "Elisp" and "Elisp (emacs-snapshot)" entries. I see it now. Also, I sometimes forget that Emacs is one of the projects with good documentation, and probably not the type to merge major new features without adequate documentation. – Ryan Thompson Oct 6 '11 at 3:38

1 Answer

up vote 19 down vote accepted

I guess the manual should be the definitive source.

In Emacs 24.0.90.1, M-: (info "(elisp) Lexical Binding") RET says:

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).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.