aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 0c3754a338f..aa6e1bd2df8 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -31526,7 +31526,9 @@ note_mouse_highlight (struct frame *f, int x, int y)
31526 is currently hidden to avoid Bug#30519. */ 31526 is currently hidden to avoid Bug#30519. */
31527 || (!hlinfo->mouse_face_hidden 31527 || (!hlinfo->mouse_face_hidden
31528 && OVERLAYP (hlinfo->mouse_face_overlay) 31528 && OVERLAYP (hlinfo->mouse_face_overlay)
31529 && mouse_face_overlay_overlaps (hlinfo->mouse_face_overlay))) 31529 /* It's possible the overlay was deleted (Bug#35273). */
31530 && XMARKER (OVERLAY_START (hlinfo->mouse_face_overlay))->buffer
31531 && mouse_face_overlay_overlaps (hlinfo->mouse_face_overlay)))
31530 { 31532 {
31531 /* Find the highest priority overlay with a mouse-face. */ 31533 /* Find the highest priority overlay with a mouse-face. */
31532 Lisp_Object overlay = Qnil; 31534 Lisp_Object overlay = Qnil;