over-enthusiastically removed 2012-10-23.
+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.
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