]> git.eshelyaron.com Git - emacs.git/commitdiff
Do not destructively modify interprogram paste
authorBasil L. Contovounesios <contovob@tcd.ie>
Fri, 13 Apr 2018 11:47:30 +0000 (12:47 +0100)
committerNoam Postavsky <npostavs@gmail.com>
Sat, 14 Apr 2018 05:20:03 +0000 (01:20 -0400)
* simple.el (kill-new, current-kill): Non-destructively reverse list
returned by interprogram-paste-function. (bug#31097)

lisp/simple.el

index efe5406bf705653791b54b4e5388d543252f5bc0..dada65d4ee387d42441f9da912c5e7de93390b47 100644 (file)
@@ -4369,7 +4369,8 @@ argument should still be a \"useful\" string for such uses."
                                    (funcall interprogram-paste-function))))
       (when interprogram-paste
         (dolist (s (if (listp interprogram-paste)
-                      (nreverse interprogram-paste)
+                       ;; Use `reverse' to avoid modifying external data.
+                       (reverse interprogram-paste)
                     (list interprogram-paste)))
          (unless (and kill-do-not-save-duplicates
                       (equal-including-properties s (car kill-ring)))
@@ -4448,7 +4449,8 @@ move the yanking point; just return the Nth kill forward."
          ;; selection, with identical text.
          (let ((interprogram-cut-function nil))
            (if (listp interprogram-paste)
-             (mapc 'kill-new (nreverse interprogram-paste))
+                ;; Use `reverse' to avoid modifying external data.
+                (mapc #'kill-new (reverse interprogram-paste))
              (kill-new interprogram-paste)))
          (car kill-ring))
       (or kill-ring (error "Kill ring is empty"))