Function: forward-sentence

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

Signature

(forward-sentence &optional ARG)

Documentation

Move forward to next end of sentence. With argument ARG, repeat.

If ARG is negative, move backward repeatedly to start of sentence. Delegates its work to forward-sentence-function.

View in manual

Probably introduced at or before Emacs version 21.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/paragraphs.el.gz
(defun forward-sentence (&optional arg)
  "Move forward to next end of sentence.  With argument ARG, repeat.
If ARG is negative, move backward repeatedly to start of
sentence.  Delegates its work to `forward-sentence-function'."
  (interactive "^p")
  (or arg (setq arg 1))
  (funcall forward-sentence-function arg))