]> git.eshelyaron.com Git - emacs.git/commitdiff
(kill-paragraph, backward-kill-paragraph)
authorDave Love <fx@gnu.org>
Wed, 23 Feb 2000 23:10:32 +0000 (23:10 +0000)
committerDave Love <fx@gnu.org>
Wed, 23 Feb 2000 23:10:32 +0000 (23:10 +0000)
(backward-kill-sentence, kill-sentence): Likewise.

lisp/ChangeLog
lisp/textmodes/paragraphs.el

index bcd1402390b1cec936339eaee59c36e26fdf5870..8ccc4099c317551fd679f46ddcccaaa4ed5fe1b2 100644 (file)
@@ -1,5 +1,12 @@
 2000-02-23  Dave Love  <fx@gnu.org>
 
+       * simple.el (zap-to-char, kill-line, kill-region, kill-word)
+       (backward-kill-word): Revert addition of * to interactive spec --
+       it's a feature.
+
+       * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
+       (backward-kill-sentence, kill-sentence): Likewise.
+
        * gud.el (gud-jdb-build-class-source-alist): Prepend space to
        scratch buffer name.
        (gud-format-command): Use int-to-string in ?l case.  Simplify
index 1eead922b002c98e4e4615786e9fa2970df6385d..f3fac7076e10fef8f7115d1e6f47cbc27411c3ee 100644 (file)
@@ -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)