Function: tpu-char
tpu-char is an interactive and byte-compiled function defined in
tpu-edt.el.gz.
Signature
(tpu-char NUM)
Documentation
Move to the next character in the current direction.
A repeat count means move that many characters.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
;;;
;;; Movement by character
;;;
(defun tpu-char (num)
"Move to the next character in the current direction.
A repeat count means move that many characters."
(interactive "p")
(if tpu-advance (tpu-forward-char num) (tpu-backward-char num)))