summaryrefslogtreecommitdiff
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2000-02-23 23:10:32 +0000
committerDave Love <fx@gnu.org>2000-02-23 23:10:32 +0000
commit275cf1b274d1a736d69fc9f16f08dfdb49e67935 (patch)
tree09243f3abcea28e5b557fedefc27d027e855a962 /lisp/textmodes
parente761e42c1857365c77c40f3f2275033b8b137144 (diff)
downloademacs-275cf1b274d1a736d69fc9f16f08dfdb49e67935.tar.gz
emacs-275cf1b274d1a736d69fc9f16f08dfdb49e67935.tar.bz2
emacs-275cf1b274d1a736d69fc9f16f08dfdb49e67935.zip
(kill-paragraph, backward-kill-paragraph)
(backward-kill-sentence, kill-sentence): Likewise.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/paragraphs.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el
index 1eead922b00..f3fac7076e1 100644
--- a/lisp/textmodes/paragraphs.el
+++ b/lisp/textmodes/paragraphs.el
@@ -317,14 +317,14 @@ The paragraph marked is the one that contains point or follows point."
"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 @@ 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)