]> git.eshelyaron.com Git - emacs.git/commitdiff
Do not call interprogram-paste-function repeatedly
authorBasil L. Contovounesios <contovob@tcd.ie>
Thu, 12 Apr 2018 16:46:37 +0000 (17:46 +0100)
committerNoam Postavsky <npostavs@gmail.com>
Wed, 25 Apr 2018 11:37:32 +0000 (07:37 -0400)
* lisp/simple.el (current-kill): Disable interprogram-paste-function
so that kill-new doesn't call it repeatedly when
save-interprogram-paste-before-kill is enabled.  (bug#31209)

lisp/simple.el

index 839a4dd2c6c94813553a0d3c8d1afc112cba1427..863547a76baa07759e3e043e75668bf539abf3f8 100644 (file)
@@ -4477,7 +4477,10 @@ move the yanking point; just return the Nth kill forward."
          ;; Disable the interprogram cut function when we add the new
          ;; text to the kill ring, so Emacs doesn't try to own the
          ;; selection, with identical text.
-         (let ((interprogram-cut-function nil))
+          ;; Also disable the interprogram paste function, so that
+          ;; `kill-new' doesn't call it repeatedly.
+          (let ((interprogram-cut-function nil)
+                (interprogram-paste-function nil))
            (if (listp interprogram-paste)
                 ;; Use `reverse' to avoid modifying external data.
                 (mapc #'kill-new (reverse interprogram-paste))