* doc/lispref/variables.texi (Lexical Binding): Fix typo.

This commit is contained in:
Glenn Morris 2013-06-11 21:25:53 -04:00
parent edfaf7c0e3
commit 611e8a4854
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
2013-06-12 Glenn Morris <rgm@gnu.org>
* variables.texi (Lexical Binding): Fix typo.
* functions.texi (Anonymous Functions): Put back ' removed 2012-10-23.
2013-03-12 Glenn Morris <rgm@gnu.org>

View file

@ -988,7 +988,7 @@ Here is an example:
(setq my-ticker (lambda ()
(setq x (1+ x)))))
@result{} (closure ((x . 0) t) ()
(1+ x))
(setq x (1+ x)))
(funcall my-ticker)
@result{} 1