* 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 751e4f9..8b1bfa6 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 4bcf798..4a38fa9 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