Function: widget-backward
widget-backward is an interactive and byte-compiled function defined
in wid-edit.el.gz.
Signature
(widget-backward ARG &optional SUPPRESS-ECHO)
Documentation
Move point back across ARG fields or buttons.
Interactively, ARG is the prefix numeric argument and defaults to 1. If the optional argument SUPPRESS-ECHO is non-nil, suppress showing in the echo area the help-echo, if any, for the final position.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-backward (arg &optional suppress-echo)
"Move point back across ARG fields or buttons.
Interactively, ARG is the prefix numeric argument and defaults to 1.
If the optional argument SUPPRESS-ECHO is non-nil, suppress showing
in the echo area the help-echo, if any, for the final position."
(interactive "p")
(run-hooks 'widget-backward-hook)
(widget-move (- arg) suppress-echo))