Function: tpu-forward-to-word
tpu-forward-to-word is an interactive and byte-compiled function
defined in tpu-edt.el.gz.
Signature
(tpu-forward-to-word NUM)
Documentation
Move forward until encountering the beginning of a word.
With argument, do this that many times.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-forward-to-word (num)
"Move forward until encountering the beginning of a word.
With argument, do this that many times."
(interactive "p")
(while (and (> num 0) (not (eobp)))
(let* ((beg (point))
(end (prog2 (end-of-line) (point) (goto-char beg))))
(cond ((eolp)
(forward-char 1))
((memq (char-after (point)) tpu-word-separator-list)
(forward-char 1)
(skip-chars-forward " \t" end))
(t
(skip-chars-forward tpu-skip-chars end)
(skip-chars-forward " \t" end))))
(setq num (1- num))))