Function: tpu-forward-char
tpu-forward-char is an interactive and byte-compiled function defined
in tpu-extras.el.gz.
Signature
(tpu-forward-char NUM)
Documentation
Move right ARG characters (left if ARG is negative).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-extras.el.gz
;;; Movement by character
(defun tpu-forward-char (num)
"Move right ARG characters (left if ARG is negative)."
(interactive "p")
(if tpu-cursor-free-mode (picture-forward-column num) (forward-char num)))