emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/org 616fc20445 1/2: Backport commit f3769bc32 from Emac


From: ELPA Syncer
Subject: [elpa] externals/org 616fc20445 1/2: Backport commit f3769bc32 from Emacs
Date: Mon, 10 Oct 2022 15:58:01 -0400 (EDT)

branch: externals/org
commit 616fc204455ee2145f71080be3dfed9879b64fcd
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Kyle Meyer <kyle@kyleam.com>

    Backport commit f3769bc32 from Emacs
    
    * lisp/org.el (org-unfontify-region): Use `with-silent-modifications`.
    (org-display-inline-remove-overlay): Remove ineffective binding of
    `inhibit-modification-hooks` around code which doesn't modify the
    buffer anyway.
    
    org.el: Improve bindings of `inhibit-*` vars
    f3769bc32a3d32377a83b33d416205f80814e422
    Stefan Monnier
    Fri Oct 7 12:29:56 2022 -0400
---
 lisp/org.el | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/lisp/org.el b/lisp/org.el
index 6f92cdeab5..7de907590e 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -5929,10 +5929,7 @@ If TAG is a number, get the corresponding match group."
 (defun org-unfontify-region (beg end &optional _maybe_loudly)
   "Remove fontification and activation overlays from links."
   (font-lock-default-unfontify-region beg end)
-  (let* ((buffer-undo-list t)
-        (inhibit-read-only t) (inhibit-point-motion-hooks t)
-        (inhibit-modification-hooks t)
-        deactivate-mark buffer-file-name buffer-file-truename)
+  (with-silent-modifications
     (decompose-region beg end)
     (remove-text-properties beg end
                            '(mouse-face t keymap t org-linked-text t
@@ -16702,10 +16699,9 @@ buffer boundaries with possible narrowing."
 
 (defun org-display-inline-remove-overlay (ov after _beg _end &optional _len)
   "Remove inline-display overlay if a corresponding region is modified."
-  (let ((inhibit-modification-hooks t))
-    (when (and ov after)
-      (delete ov org-inline-image-overlays)
-      (delete-overlay ov))))
+  (when (and ov after)
+    (delete ov org-inline-image-overlays)
+    (delete-overlay ov)))
 
 (defun org-remove-inline-images ()
   "Remove inline display of images."



reply via email to

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