Function: edt-end-of-line-forward

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

Signature

(edt-end-of-line-forward NUM)

Documentation

Move forward 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
;;;
;;; EOL (End of Line)
;;;

(defun edt-end-of-line-forward (num)
  "Move forward to next end of line mark.
Argument NUM is the number of EOL marks to move."
  (interactive "p")
  (edt-check-prefix num)
  (let ((beg (edt-current-line)))
    (forward-char)
    (end-of-line num)
    (edt-bottom-check beg num)))