Function: tpu-line

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

Signature

(tpu-line NUM)

Documentation

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

A repeat count means move that many lines.

Key Bindings

Source Code

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