Function: edt-next-line

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

Signature

(edt-next-line NUM)

Documentation

Move cursor down 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
;;;
;;; UP and DOWN Arrows
;;;

(defun edt-next-line (num)
  "Move cursor down 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 next-line instead of forward-line.
    (with-no-warnings (next-line num))
    (edt-bottom-check beg num)))