Function: edt-end-of-line

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

Signature

(edt-end-of-line NUM)

Documentation

Move in current direction to next end of line mark.

Argument NUM is the number of EOL marks to move.

Key Bindings

Source Code

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