Function: tpu-next-line

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

Signature

(tpu-next-line NUM)

Documentation

Move to next line.

Prefix argument serves as a repeat count.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/tpu-extras.el.gz
;;;  Movement by line

(defun tpu-next-line (num)
  "Move to next line.
Prefix argument serves as a repeat count."
  (interactive "p")
  (let ((beg (tpu-current-line)))
    (if tpu-cursor-free-mode (or (eobp) (picture-move-down num))
      (line-move num))
    (tpu-bottom-check beg num)
    (setq this-command 'next-line)))