Function: widget-field-action
widget-field-action is a byte-compiled function defined in
wid-edit.el.gz.
Signature
(widget-field-action WIDGET &optional EVENT)
Documentation
Move to next field.
Source Code
;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-field-action (widget &optional _event)
"Move to next field."
(widget-forward 1)
(run-hook-with-args 'widget-edit-functions widget))