branch: externals/auto-overlays
commit fad8e4a4370d004289c212fe5a495b57f13bb296
Author: Toby S. Cubitt <[email protected]>
Commit: Toby S. Cubitt <[email protected]>

    Reenable auto-overlay updates triggered by undo.
---
 auto-overlays.el | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/auto-overlays.el b/auto-overlays.el
index cfb704d..db050b4 100644
--- a/auto-overlays.el
+++ b/auto-overlays.el
@@ -977,7 +977,7 @@ overlays were saved."
   ;; order.
 
   ;; ignore changes that aren't either insertions or deletions
-  (when (and (not undo-in-progress)
+  (when (and ;;(not undo-in-progress)
             (or (and (/= beg end) (=  len 0))    ; insertion
                 (and (=  beg end) (/= len 0))))  ; deletion
     ;; repeat until all the pending functions have been cleared (it may be
@@ -1239,7 +1239,6 @@ overlays were saved."
 
 
 
-
 (defun auto-o-suicide (o-self &optional force)
   ;; This function is assigned to all match overlay modification hooks, and
   ;; calls the appropriate suicide function for match overlay O-SELF.

Reply via email to