]> git.eshelyaron.com Git - emacs.git/commitdiff
* doc/lispref/functions.texi (Anonymous Functions): Put back '
authorGlenn Morris <rgm@gnu.org>
Wed, 12 Jun 2013 01:23:16 +0000 (21:23 -0400)
committerGlenn Morris <rgm@gnu.org>
Wed, 12 Jun 2013 01:23:16 +0000 (21:23 -0400)
over-enthusiastically removed 2012-10-23.

doc/lispref/ChangeLog
doc/lispref/functions.texi

index 36dd05b125aa36c8d09050dae00f63f3b1e12ee0..751e4f9885bc6170ec010fbf998cc6077c2b3a9c 100644 (file)
@@ -1,3 +1,7 @@
+2013-06-12  Glenn Morris  <rgm@gnu.org>
+
+       * functions.texi (Anonymous Functions): Put back ' removed 2012-10-23.
+
 2013-03-12  Glenn Morris  <rgm@gnu.org>
 
        * elisp.texi: Add some stuff specific to www.gnu.org.
index 999923f5b842d982652bdefe3cfce9841f115fce..dc425031af3df2ab6bf0740112b47bbc92736043 100644 (file)
@@ -975,10 +975,11 @@ Note that we do not quote the @code{lambda} form.
 compiled.  This would not happen if, say, you had constructed the
 anonymous function by quoting it as a list:
 
+@c Do not unquote this lambda!
 @example
 @group
 (defun double-property (symbol prop)
-  (change-property symbol prop (lambda (x) (* 2 x))))
+  (change-property symbol prop '(lambda (x) (* 2 x))))
 @end group
 @end example