From: Richard M. Stallman Date: Sun, 21 May 2006 22:56:44 +0000 (+0000) Subject: (kill-region): Interactively, pass point, then mark. X-Git-Tag: emacs-pretest-22.0.90~2415 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=214a3db00c7b79edc53cc1a2a310442ce9e86ffa;p=emacs.git (kill-region): Interactively, pass point, then mark. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2431a0954d8..bf6f64f9227 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2006-05-21 Richard Stallman + + * simple.el (kill-region): Interactively, pass point, then mark. + 2006-05-22 Thien-Thi Nguyen * emacs-lisp/ewoc.el (ewoc-create): Add autoload cookie. diff --git a/lisp/simple.el b/lisp/simple.el index 3efffbce416..cee04f4a961 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2549,7 +2549,9 @@ to make one entry in the kill ring. In Lisp code, optional third arg YANK-HANDLER, if non-nil, specifies the yank-handler text property to be set on the killed text. See `insert-for-yank'." - (interactive "r") + ;; Pass point first, then mark, because the order matters + ;; when calling kill-append. + (interactive (list (point) (mark))) (condition-case nil (let ((string (filter-buffer-substring beg end t))) (when string ;STRING is nil if BEG = END