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 to the previous field or button.

With optional ARG, move across that many fields. When the second optional argument is non-nil, nothing is shown in the echo area.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-backward (arg &optional suppress-echo)
  "Move point to the previous field or button.
With optional ARG, move across that many fields.
When the second optional argument is non-nil,
nothing is shown in the echo area."
  (interactive "p")
  (run-hooks 'widget-backward-hook)
  (widget-move (- arg) suppress-echo))