Function: edt-sentence-backward
edt-sentence-backward is an interactive and byte-compiled function
defined in edt.el.gz.
Signature
(edt-sentence-backward NUM)
Documentation
Move backward to next sentence beginning.
Argument NUM is the positive number of sentences to move.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-sentence-backward (num)
"Move backward to next sentence beginning.
Argument NUM is the positive number of sentences to move."
(interactive "p")
(edt-check-prefix num)
(edt-with-position
(if (eobp)
(error "End of buffer")
(backward-sentence num))
(and (< (point) top) (recenter (min beg top-margin)))))