Function: tpu-previous-end-of-line

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

Signature

(tpu-previous-end-of-line NUM)

Documentation

Move EOL upward.

Accepts a prefix argument for the number of lines to move.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/tpu-extras.el.gz
(defun tpu-previous-end-of-line (num)
  "Move EOL upward.
Accepts a prefix argument for the number of lines to move."
  (interactive "p")
  (let ((beg (tpu-current-line)))
    (cond (tpu-cursor-free-mode
	   (picture-end-of-line (- 1 num)))
	  (t
	   (end-of-line (- 1 num))))
    (tpu-top-check beg num)))