bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#14492: [PATCH] Bug in Elisp manual


From: Kelly Dean
Subject: bug#14492: [PATCH] Bug in Elisp manual
Date: Tue, 28 May 2013 15:31:06 -0700 (PDT)

Self explanatory.

--- emacs-24.3/doc/lispref/variables.texi
+++ emacs-24.3/doc/lispref/variables.texi
@@ -987,9 +987,9 @@
 (let ((x 0))             ; @r{@code{x} is lexically bound.}
   (setq my-ticker (lambda ()
                     (setq x (1+ x)))))
     @result{} (closure ((x . 0) t) ()
-          (1+ x))
+          (setq x (1+ x)))
 
 (funcall my-ticker)
     @result{} 1
 






reply via email to

[Prev in Thread] Current Thread [Next in Thread]