]> git.eshelyaron.com Git - emacs.git/commitdiff
(backward-kill-sentence): Work in read-only buffers.
authorRichard M. Stallman <rms@gnu.org>
Wed, 28 Sep 1994 04:46:02 +0000 (04:46 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 28 Sep 1994 04:46:02 +0000 (04:46 +0000)
(kill-sentence): Work in read-only buffers.

lisp/textmodes/paragraphs.el

index a6a44fead8e7f90d7c6802fc419f7ed1ac087f60..2a08bb21966812f64b4ebb14491beeeeec46d50f 100644 (file)
@@ -224,13 +224,13 @@ See `forward-sentence' for more information."
 (defun kill-sentence (&optional arg)
   "Kill from point to end of sentence.
 With arg, repeat; negative arg -N means kill back to Nth start of sentence."
-  (interactive "*p")
+  (interactive "p")
   (kill-region (point) (progn (forward-sentence arg) (point))))
 
 (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")
+  (interactive "p")
   (kill-region (point) (progn (backward-sentence arg) (point))))
 
 (defun mark-end-of-sentence (arg)