Function: backward-sentence
backward-sentence is an interactive and byte-compiled function defined
in paragraphs.el.gz.
Signature
(backward-sentence &optional ARG)
Documentation
Move backward to start of sentence.
With ARG, do it ARG times. See forward-sentence for more
information.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/paragraphs.el.gz
(defun backward-sentence (&optional arg)
"Move backward to start of sentence.
With ARG, do it ARG times. See `forward-sentence' for more
information."
(interactive "^p")
(or arg (setq arg 1))
(forward-sentence (- arg)))