# HG changeset patch # User Richard M. Stallman # Date 719643285 0 # Node ID 876e54ad6936941f146fc77161d3f00c5ad86b6b # Parent 1905025a8709705c1064e606d76e5f7f944bdf2f (backward-kill-sentence): Fix typo in last change. diff -r 1905025a8709 -r 876e54ad6936 lisp/textmodes/paragraphs.el --- 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'."