Mercurial > emacs
changeset 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 | 9db43da03fde |
children | 23f4d126447d |
files | lisp/cus-edit.el |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
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."