Function: tpu-backward-line
tpu-backward-line is an interactive and byte-compiled function defined
in tpu-extras.el.gz.
Signature
(tpu-backward-line NUM)
Documentation
Move to beginning of previous line.
Prefix argument serves as repeat count.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-extras.el.gz
(defun tpu-backward-line (num)
"Move to beginning of previous line.
Prefix argument serves as repeat count."
(interactive "p")
(let ((beg (tpu-current-line)))
(or (bolp) (>= 0 num) (setq num (- num 1)))
(forward-line (- num))
(tpu-top-check beg num)))