diff lisp/cus-edit.el @ 28612:0051d3178111

(custom-face, face): Unquote the lambda.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 17 Apr 2000 10:35:10 +0000
parents cfff869d8a3d
children a57bafeec17c
line wrap: on
line diff
--- a/lisp/cus-edit.el	Sun Apr 16 20:13:23 2000 +0000
+++ b/lisp/cus-edit.el	Mon Apr 17 10:35:10 2000 +0000
@@ -2547,8 +2547,7 @@
   "Customize face."
   :sample-face 'custom-face-tag-face
   :help-echo "Set or reset this face."
-  :documentation-property '(lambda (face)
-			     (face-doc-string face))
+  :documentation-property (lambda (face) (face-doc-string face))
   :value-create 'custom-face-value-create
   :action 'custom-face-action
   :custom-category 'face
@@ -2889,7 +2888,7 @@
   :value-get 'widget-value-value-get
   :validate 'widget-children-validate
   :action 'widget-face-action
-  :match '(lambda (widget value) (symbolp value)))
+  :match (lambda (widget value) (symbolp value)))
 
 (defun widget-face-value-create (widget)
   "Create a `custom-face' child."