mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-27 07:37:33 +00:00
(custom-face, face): Unquote the lambda.
This commit is contained in:
parent
8d2259b9a2
commit
8cfd634fbe
@ -2547,8 +2547,7 @@ Match frames with dark backgrounds.")
|
||||
"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 @@ restoring it to the state of a face that has never been customized."
|
||||
: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."
|
||||
|
Loading…
Reference in New Issue
Block a user