aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTassilo Horn2024-05-24 23:04:33 +0200
committerTassilo Horn2024-05-24 23:04:33 +0200
commitf3dd0d981cbb9c0fa10a3c5b05b244ed7a0f4e6b (patch)
treec40070e2347069d5554fbde96687a33244578b5f
parentc812c935486010bfe2f80c3887c708fbaa4907a6 (diff)
downloademacs-f3dd0d981cbb9c0fa10a3c5b05b244ed7a0f4e6b.tar.gz
emacs-f3dd0d981cbb9c0fa10a3c5b05b244ed7a0f4e6b.zip
; Fix previous fix for bug#70796
-rw-r--r--lisp/progmodes/bug-reference.el8
1 files 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."
196 (funcall bug-reference-url-format))))))) 196 (funcall bug-reference-url-format)))))))
197 ;; Delete remaining but unused overlays. 197 ;; Delete remaining but unused overlays.
198 (dolist (ov overlays) 198 (dolist (ov overlays)
199 (delete-overlay ov))) 199 (delete-overlay ov))
200 ;; Signal the bounds we actually fontified to jit-lock to allow for 200 ;; Signal the bounds we actually fontified to jit-lock to allow for
201 ;; optimizations (bug#70796). 201 ;; optimizations (bug#70796).
202 `(jit-lock-bounds ,beg-line . ,end-line))) 202 `(jit-lock-bounds ,beg-line . ,end-line))))
203 203
204;; Taken from button.el. 204;; Taken from button.el.
205(defun bug-reference-push-button (&optional pos _use-mouse-action) 205(defun bug-reference-push-button (&optional pos _use-mouse-action)