From 489081f8e53d39aa4f27584882ed5afa8cc53538 Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Tue, 6 Nov 2012 15:27:20 -0800 Subject: [PATCH] C-w/M-w after C-M-w now always append to the prior kill-ring element --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index aed945d..94a9991 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -3358,7 +3358,7 @@ the text killed this time appends to the text killed last time to make one entry in the kill ring." ;; Pass point first, then mark, because the order matters ;; when calling kill-append. - (interactive (list (point) (mark))) + (interactive "r") (unless (and beg end) (error "The mark is not set now, so there is no region")) (condition-case nil -- 1.7.10.4