From 9116f0b35526c7a05b1a46a16c7d7c4c667b7ddf Mon Sep 17 00:00:00 2001 From: Tassilo Horn Date: Fri, 24 May 2024 23:04:33 +0200 Subject: [PATCH] ; Fix previous fix for bug#70796 (cherry picked from commit f3dd0d981cbb9c0fa10a3c5b05b244ed7a0f4e6b) --- lisp/progmodes/bug-reference.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/progmodes/bug-reference.el b/lisp/progmodes/bug-reference.el index 569de5a2b91..4a691e5bf67 100644 --- a/lisp/progmodes/bug-reference.el +++ b/lisp/progmodes/bug-reference.el @@ -196,10 +196,10 @@ subexpression 10." (funcall bug-reference-url-format))))))) ;; Delete remaining but unused overlays. (dolist (ov overlays) - (delete-overlay ov))) - ;; Signal the bounds we actually fontified to jit-lock to allow for - ;; optimizations (bug#70796). - `(jit-lock-bounds ,beg-line . ,end-line))) + (delete-overlay ov)) + ;; Signal the bounds we actually fontified to jit-lock to allow for + ;; optimizations (bug#70796). + `(jit-lock-bounds ,beg-line . ,end-line)))) ;; Taken from button.el. (defun bug-reference-push-button (&optional pos _use-mouse-action) -- 2.39.5