changeset 1462:876e54ad6936

(backward-kill-sentence): Fix typo in last change.
author Richard M. Stallman <rms@gnu.org>
date Wed, 21 Oct 1992 04:54:45 +0000
parents 1905025a8709
children c4943aceac8f
files lisp/textmodes/paragraphs.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/textmodes/paragraphs.el	Wed Oct 21 04:52:59 1992 +0000
+++ b/lisp/textmodes/paragraphs.el	Wed Oct 21 04:54:45 1992 +0000
@@ -210,7 +210,7 @@
   "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) (save-excursion (forward-sentence arg) (point))))
+  (kill-region (point) (save-excursion (backward-sentence arg) (point))))
 
 (defun mark-end-of-sentence (arg)
   "Put mark at end of sentence.  Arg works as in `forward-sentence'."