Mercurial > emacs
changeset 27837:46fedf13d52e
(kill-paragraph, backward-kill-paragraph)
(backward-kill-sentence, kill-sentence): Likewise.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 23 Feb 2000 23:09:46 +0000 |
parents | 132294fa754e |
children | ad4b3195f851 |
files | lisp/textmodes/paragraphs.el |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/textmodes/paragraphs.el Wed Feb 23 23:08:02 2000 +0000 +++ b/lisp/textmodes/paragraphs.el Wed Feb 23 23:09:46 2000 +0000 @@ -317,14 +317,14 @@ "Kill forward to end of paragraph. With arg N, kill forward to Nth end of paragraph; negative arg -N means kill backward to Nth start of paragraph." - (interactive "*p") + (interactive "p") (kill-region (point) (progn (forward-paragraph arg) (point)))) (defun backward-kill-paragraph (arg) "Kill back to start of paragraph. With arg N, kill back to Nth start of paragraph; negative arg -N means kill forward to Nth end of paragraph." - (interactive "*p") + (interactive "p") (kill-region (point) (progn (backward-paragraph arg) (point)))) (defun transpose-paragraphs (arg) @@ -390,13 +390,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)