Function: widget-specify-active
widget-specify-active is a byte-compiled function defined in
wid-edit.el.gz.
Signature
(widget-specify-active WIDGET)
Documentation
Make WIDGET active for user modifications.
Source Code
;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-specify-active (widget)
"Make WIDGET active for user modifications."
(let ((inactive (widget-get widget :inactive)))
(when inactive
(delete-overlay inactive)
(widget-put widget :inactive nil))))