# HG changeset patch # User Dave Love # Date 951347386 0 # Node ID 46fedf13d52e8c92dab45087b0e1f3acb1b6b1e7 # Parent 132294fa754e4df49eabb4c26f83daf2e52090f5 (kill-paragraph, backward-kill-paragraph) (backward-kill-sentence, kill-sentence): Likewise. diff -r 132294fa754e -r 46fedf13d52e lisp/textmodes/paragraphs.el --- 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)