# HG changeset patch # User Stefan Monnier # Date 955967710 0 # Node ID 0051d317811145b0864ea19f29fa7933ed55bd32 # Parent 9db43da03fde6071fc5fcb43a371742540ee500b (custom-face, face): Unquote the lambda. diff -r 9db43da03fde -r 0051d3178111 lisp/cus-edit.el --- 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."