Function: edt-line-backward

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

Signature

(edt-line-backward NUM)

Documentation

Move backward 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
;;;
;;; LINE
;;;
;; When direction is set to BACKUP, LINE behaves just like BEGINNING
;; OF LINE in EDT.  So edt-line-backward is not really needed as a
;; separate function.

(defun edt-line-backward (num)
  "Move backward to next beginning of line mark.
Argument NUM is the number of BOL marks to move."
  (interactive "p")
  (edt-beginning-of-line num))