Function: edt-line

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

Signature

(edt-line NUM)

Documentation

Move in current direction to next beginning of line mark.

Argument NUM is the number of BOL marks to move.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-line (num)
  "Move in current direction to next beginning of line mark.
Argument NUM is the number of BOL marks to move."
  (interactive "p")
  (if (equal edt-direction-string edt-forward-string)
      (edt-line-forward num)
    (edt-line-backward num)))