emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 45e5710: Fix change from 2015-04-22 "On C-y, stop s


From: Alan Mackenzie
Subject: [Emacs-diffs] master 45e5710: Fix change from 2015-04-22 "On C-y, stop some text property entries ..."
Date: Sat, 25 Apr 2015 20:50:52 +0000

branch: master
commit 45e571035bffc0db059b1d686830da89df3d2d48
Author: Alan Mackenzie <address@hidden>
Commit: Alan Mackenzie <address@hidden>

    Fix change from 2015-04-22 "On C-y, stop some text property entries ..."
    
    * lisp/subr.el (remove-yank-excluded-properties): put
    `with-silent-modifications' around only the last three lines of code.
---
 lisp/subr.el |   28 ++++++++++++++--------------
 1 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/lisp/subr.el b/lisp/subr.el
index 91176e9..0343edb 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -2811,21 +2811,21 @@ if it's an autoloaded macro."
   "Process text properties between START and END, inserted for a `yank'.
 Perform the handling specified by `yank-handled-properties', then
 remove properties specified by `yank-excluded-properties'."
-  (with-silent-modifications
-    (let ((inhibit-read-only t))
-      (dolist (handler yank-handled-properties)
-       (let ((prop (car handler))
-             (fun  (cdr handler))
-             (run-start start))
-         (while (< run-start end)
-           (let ((value (get-text-property run-start prop))
-                 (run-end (next-single-property-change
-                           run-start prop nil end)))
-             (funcall fun value run-start run-end)
-             (setq run-start run-end)))))
+  (let ((inhibit-read-only t))
+    (dolist (handler yank-handled-properties)
+      (let ((prop (car handler))
+            (fun  (cdr handler))
+            (run-start start))
+        (while (< run-start end)
+          (let ((value (get-text-property run-start prop))
+                (run-end (next-single-property-change
+                          run-start prop nil end)))
+            (funcall fun value run-start run-end)
+            (setq run-start run-end)))))
+    (with-silent-modifications
       (if (eq yank-excluded-properties t)
-         (set-text-properties start end nil)
-       (remove-list-of-text-properties start end yank-excluded-properties)))))
+          (set-text-properties start end nil)
+        (remove-list-of-text-properties start end yank-excluded-properties)))))
 
 (defvar yank-undo-function)
 



reply via email to

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