aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-06-11 21:23:16 -0400
committerGlenn Morris2013-06-11 21:23:16 -0400
commitedfaf7c0e39361a10eb4bdbe7f5bbd0d45df05ed (patch)
treec0fd8d09c845e678a080019af23fc1885169693b
parent20992a85041ddd8c2852eaef24fe69f9a47019a2 (diff)
downloademacs-edfaf7c0e39361a10eb4bdbe7f5bbd0d45df05ed.tar.gz
emacs-edfaf7c0e39361a10eb4bdbe7f5bbd0d45df05ed.zip
* doc/lispref/functions.texi (Anonymous Functions): Put back '
over-enthusiastically removed 2012-10-23.
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/functions.texi3
2 files changed, 6 insertions, 1 deletions
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 @@
12013-06-12 Glenn Morris <rgm@gnu.org>
2
3 * functions.texi (Anonymous Functions): Put back ' removed 2012-10-23.
4
12013-03-12 Glenn Morris <rgm@gnu.org> 52013-03-12 Glenn Morris <rgm@gnu.org>
2 6
3 * elisp.texi: Add some stuff specific to www.gnu.org. 7 * 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.
975compiled. This would not happen if, say, you had constructed the 975compiled. This would not happen if, say, you had constructed the
976anonymous function by quoting it as a list: 976anonymous function by quoting it as a list:
977 977
978@c Do not unquote this lambda!
978@example 979@example
979@group 980@group
980(defun double-property (symbol prop) 981(defun double-property (symbol prop)
981 (change-property symbol prop (lambda (x) (* 2 x)))) 982 (change-property symbol prop '(lambda (x) (* 2 x))))
982@end group 983@end group
983@end example 984@end example
984 985