Function: edt-word-backward
edt-word-backward is an interactive and byte-compiled function defined
in edt.el.gz.
Signature
(edt-word-backward NUM)
Documentation
Move backward to first character of previous word.
Argument NUM is the number of words to move.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-word-backward (num)
"Move backward to first character of previous word.
Argument NUM is the number of words to move."
(interactive "p")
(edt-check-prefix num)
(while (> num 0)
(edt-one-word-backward)
(setq num (1- num))))