Function: tpu-word

tpu-word is an interactive and byte-compiled function defined in tpu-edt.el.gz.

Signature

(tpu-word NUM)

Documentation

Move to the beginning of the next word in the current direction.

A repeat count means move that many words.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-word (num)
  "Move to the beginning of the next word in the current direction.
A repeat count means move that many words."
  (interactive "p")
  (if tpu-advance (tpu-forward-to-word num) (tpu-backward-to-word num)))