Function: tpu-end-of-line

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

Signature

(tpu-end-of-line NUM)

Documentation

Move to the next end of 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-end-of-line (num)
  "Move to the next end of line in the current direction.
A repeat count means move that many lines."
  (interactive "p")
  (if tpu-advance (tpu-next-end-of-line num) (tpu-previous-end-of-line num)))