Function: tpu-forward-line

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

Signature

(tpu-forward-line NUM)

Documentation

Move to beginning of next line.

Prefix argument serves as a repeat count.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/tpu-extras.el.gz
(defun tpu-forward-line (num)
  "Move to beginning of next line.
Prefix argument serves as a repeat count."
  (interactive "p")
  (let ((beg (tpu-current-line)))
    (forward-line num)
    (tpu-bottom-check beg num)))