Function: widget-field-activate
widget-field-activate is an interactive and byte-compiled function
defined in wid-edit.el.gz.
Signature
(widget-field-activate POS &optional EVENT)
Documentation
Invoke the editable field at point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-field-activate (pos &optional event)
"Invoke the editable field at point."
(interactive "@d")
(let ((field (widget-field-at pos)))
(if field
(widget-apply-action field event)
(call-interactively
(lookup-key widget-global-map (this-command-keys))))))