emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/simple.el


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/simple.el
Date: Sun, 21 May 2006 22:56:27 +0000

Index: emacs/lisp/simple.el
diff -u emacs/lisp/simple.el:1.803 emacs/lisp/simple.el:1.804
--- emacs/lisp/simple.el:1.803  Fri May 12 17:48:40 2006
+++ emacs/lisp/simple.el        Sun May 21 22:56:27 2006
@@ -2549,7 +2549,9 @@
 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]