From: Glenn Morris Date: Wed, 12 Jun 2013 01:23:16 +0000 (-0400) Subject: * doc/lispref/functions.texi (Anonymous Functions): Put back ' X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1943^2~14 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=edfaf7c0e39361a10eb4bdbe7f5bbd0d45df05ed;p=emacs.git * doc/lispref/functions.texi (Anonymous Functions): Put back ' over-enthusiastically removed 2012-10-23. --- diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 36dd05b125a..751e4f9885b 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,3 +1,7 @@ +2013-06-12 Glenn Morris + + * functions.texi (Anonymous Functions): Put back ' removed 2012-10-23. + 2013-03-12 Glenn Morris * elisp.texi: Add some stuff specific to www.gnu.org. diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index 999923f5b84..dc425031af3 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi @@ -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