Function: edt-sentence

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

Signature

(edt-sentence NUM)

Documentation

Move in current direction to next sentence.

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 (num)
  "Move in current direction to next sentence.
Argument NUM is the positive number of sentences to move."
  (interactive "p")
  (if (equal edt-direction-string edt-forward-string)
      (edt-sentence-forward num)
    (edt-sentence-backward num)))