aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-06-11 21:25:53 -0400
committerGlenn Morris2013-06-11 21:25:53 -0400
commit611e8a48541d27e24e89facadae4822f6c39285d (patch)
tree03420eb7fcd53af34a73d69691232c617b5090de
parentedfaf7c0e39361a10eb4bdbe7f5bbd0d45df05ed (diff)
downloademacs-611e8a48541d27e24e89facadae4822f6c39285d.tar.gz
emacs-611e8a48541d27e24e89facadae4822f6c39285d.zip
* doc/lispref/variables.texi (Lexical Binding): Fix typo.
-rw-r--r--doc/lispref/ChangeLog2
-rw-r--r--doc/lispref/variables.texi2
2 files changed, 3 insertions, 1 deletions
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 @@
12013-06-12 Glenn Morris <rgm@gnu.org> 12013-06-12 Glenn Morris <rgm@gnu.org>
2 2
3 * variables.texi (Lexical Binding): Fix typo.
4
3 * functions.texi (Anonymous Functions): Put back ' removed 2012-10-23. 5 * functions.texi (Anonymous Functions): Put back ' removed 2012-10-23.
4 6
52013-03-12 Glenn Morris <rgm@gnu.org> 72013-03-12 Glenn Morris <rgm@gnu.org>
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:
988 (setq my-ticker (lambda () 988 (setq my-ticker (lambda ()
989 (setq x (1+ x))))) 989 (setq x (1+ x)))))
990 @result{} (closure ((x . 0) t) () 990 @result{} (closure ((x . 0) t) ()
991 (1+ x)) 991 (setq x (1+ x)))
992 992
993(funcall my-ticker) 993(funcall my-ticker)
994 @result{} 1 994 @result{} 1