Function: widget-backward
widget-backward is an interactive and byte-compiled function defined
in wid-edit.el.gz.
Signature
(widget-backward ARG)
Documentation
Move point to the previous field or button.
With optional ARG, move across that many fields.
Key Bindings
Aliases
advertised-widget-backward (obsolete since 23.2)
Source Code
;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-backward (arg)
"Move point to the previous field or button.
With optional ARG, move across that many fields."
(interactive "p")
(run-hooks 'widget-backward-hook)
(widget-move (- arg)))