From 04fff9c055a8f6a304dd11de237c0f22c4e25284 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Thu, 2 Mar 2000 20:08:20 +0000 Subject: [PATCH] (note_mouse_highlight): Return quickly if frame's glyph matrices have been freed. --- src/xterm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/xterm.c b/src/xterm.c index cb26ec1df5..22394aba20 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -6252,7 +6252,8 @@ note_mouse_highlight (f, x, y) return; #endif - if (disable_mouse_highlight) + if (disable_mouse_highlight + || !f->glyphs_initialized_p) return; dpyinfo->mouse_face_mouse_x = x; -- 2.39.2