* lisp/wid-edit.el (widget-default-active): Normalize boolean result.
This commit is contained in:
parent
4d65821bf0
commit
d502f0c4b5
1 changed files with 2 additions and 1 deletions
|
@ -1663,7 +1663,8 @@ The value of the :type attribute should be an unconverted widget type."
|
|||
(and (not (widget-get widget :inactive))
|
||||
(let ((parent (widget-get widget :parent)))
|
||||
(or (null parent)
|
||||
(widget-apply parent :active))))))
|
||||
(widget-apply parent :active)))
|
||||
t)))
|
||||
|
||||
(defun widget-default-deactivate (widget)
|
||||
"Make WIDGET inactive for user modifications."
|
||||
|
|
Loading…
Add table
Reference in a new issue