Function: backward-kill-sentence
backward-kill-sentence is an interactive and byte-compiled function
defined in paragraphs.el.gz.
Signature
(backward-kill-sentence &optional ARG)
Documentation
Kill back from point to start of sentence.
With ARG, repeat, or kill forward to Nth end of sentence if negative ARG -N.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/paragraphs.el.gz
(defun backward-kill-sentence (&optional arg)
"Kill back from point to start of sentence.
With ARG, repeat, or kill forward to Nth end of sentence if
negative ARG -N."
(interactive "p")
(kill-region (point) (progn (backward-sentence arg) (point))))