Function: edt-line-forward
edt-line-forward is an interactive and byte-compiled function defined
in edt.el.gz.
Signature
(edt-line-forward NUM)
Documentation
Move forward 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-forward (num)
"Move forward to next beginning of line mark.
Argument NUM is the number of BOL marks to move."
(interactive "p")
(edt-check-prefix num)
(let ((beg (edt-current-line)))
(forward-line num)
(edt-bottom-check beg num)))