Function: tpu-previous-line
tpu-previous-line is an interactive and byte-compiled function defined
in tpu-extras.el.gz.
Signature
(tpu-previous-line NUM)
Documentation
Move to previous 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-previous-line (num)
"Move to previous line.
Prefix argument serves as a repeat count."
(interactive "p")
(let ((beg (tpu-current-line)))
(if tpu-cursor-free-mode (picture-move-up num) (line-move (- num)))
(tpu-top-check beg num)
(setq this-command 'previous-line)))