Function: edt-previous-line

edt-previous-line is an interactive and byte-compiled function defined in edt.el.gz.

Signature

(edt-previous-line NUM)

Documentation

Move cursor up one line.

Argument NUM is the number of lines to move.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-previous-line (num)
  "Move cursor up one line.
Argument NUM is the number of lines to move."
  (interactive "p")
  (edt-check-prefix num)
  (let ((beg (edt-current-line)))
    ;; We're deliberately using previous-line instead of forward-line.
    (with-no-warnings (previous-line num))
    (edt-top-check beg num)))