diff options
author | Glenn Morris <rgm@gnu.org> | 2013-06-11 21:23:16 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-06-11 21:23:16 -0400 |
commit | edfaf7c0e39361a10eb4bdbe7f5bbd0d45df05ed (patch) | |
tree | c0fd8d09c845e678a080019af23fc1885169693b /doc/lispref/functions.texi | |
parent | 20992a85041ddd8c2852eaef24fe69f9a47019a2 (diff) | |
download | emacs-edfaf7c0e39361a10eb4bdbe7f5bbd0d45df05ed.tar.gz |
* doc/lispref/functions.texi (Anonymous Functions): Put back '
over-enthusiastically removed 2012-10-23.
Diffstat (limited to 'doc/lispref/functions.texi')
-rw-r--r-- | doc/lispref/functions.texi | 3 |
1 files changed, 2 insertions, 1 deletions
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 |