Function: edt-end-of-line-backward

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

Signature

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

Documentation

Move backward 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-backward (num)
  "Move backward 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)))
    (end-of-line (1- num))
    (edt-top-check beg num)))