From 611e8a48541d27e24e89facadae4822f6c39285d Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 11 Jun 2013 21:25:53 -0400 Subject: [PATCH] * doc/lispref/variables.texi (Lexical Binding): Fix typo. --- doc/lispref/ChangeLog | 2 ++ doc/lispref/variables.texi | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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 -- 2.39.2