Mercurial > emacs
changeset 9169:edc1c9086c5c
(backward-kill-sentence): Work in read-only buffers.
(kill-sentence): Work in read-only buffers.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 28 Sep 1994 04:46:02 +0000 |
parents | 632d43f8cde2 |
children | 1d95c81487a3 |
files | lisp/textmodes/paragraphs.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/textmodes/paragraphs.el Wed Sep 28 01:58:46 1994 +0000 +++ b/lisp/textmodes/paragraphs.el Wed Sep 28 04:46:02 1994 +0000 @@ -224,13 +224,13 @@ (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)