branch: externals/org-transclusion
commit 62817aa11bc32f083a06a3df775b882b643f4b57
Author: Jonas Bernoulli <jo...@bernoul.li>
Commit: Jonas Bernoulli <jo...@bernoul.li>

    fix: Remove unused lexical variable
    
    In [1: f6fd666] we stopped using this lexical variable.
    
    1: 2024-12-30 f6fd666b75f31e8d9f1628654fbdb3227e31b7d2
       fix: #177 Infinite loop when saving buffer with transclusions
---
 org-transclusion.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/org-transclusion.el b/org-transclusion.el
index 6c83a1c50e..3bff388479 100644
--- a/org-transclusion.el
+++ b/org-transclusion.el
@@ -587,7 +587,7 @@ the rest of the buffer unchanged."
   (interactive "P")
   (save-restriction
     (let ((current-marker (move-marker (make-marker) (point)))
-          match removed-marker list)
+          match list)
       (unless narrowed (widen))
       (goto-char (point-min))
       (while (setq match (text-property-search-forward 'org-transclusion-id))

Reply via email to