From: Glenn Morris Date: Wed, 12 Jun 2013 01:25:53 +0000 (-0400) Subject: * doc/lispref/variables.texi (Lexical Binding): Fix typo. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1943^2~13 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=611e8a48541d27e24e89facadae4822f6c39285d;p=emacs.git * doc/lispref/variables.texi (Lexical Binding): Fix typo. --- diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 751e4f9885b..8b1bfa6be40 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,5 +1,7 @@ 2013-06-12 Glenn Morris + * variables.texi (Lexical Binding): Fix typo. + * functions.texi (Anonymous Functions): Put back ' removed 2012-10-23. 2013-03-12 Glenn Morris diff --git a/doc/lispref/variables.texi b/doc/lispref/variables.texi index 4bcf7985f0c..4a38fa9ccd5 100644 --- a/doc/lispref/variables.texi +++ b/doc/lispref/variables.texi @@ -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