]> git.eshelyaron.com Git - emacs.git/commitdiff
* doc/lispref/variables.texi (Lexical Binding): Fix typo.
authorGlenn Morris <rgm@gnu.org>
Wed, 12 Jun 2013 01:25:53 +0000 (21:25 -0400)
committerGlenn Morris <rgm@gnu.org>
Wed, 12 Jun 2013 01:25:53 +0000 (21:25 -0400)
doc/lispref/ChangeLog
doc/lispref/variables.texi

index 751e4f9885bc6170ec010fbf998cc6077c2b3a9c..8b1bfa6be40482ca940336a69c71e517d06db4ff 100644 (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>
index 4bcf7985f0c64c4d37e9c0273d98e175168b5761..4a38fa9ccd5c246140bf575995669b2dbc6acee6 100644 (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