From: Gerd Moellmann Date: Thu, 2 Mar 2000 20:08:20 +0000 (+0000) Subject: (note_mouse_highlight): Return quickly if frame's X-Git-Tag: emacs-pretest-21.0.90~4791 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=04fff9c055a8f6a304dd11de237c0f22c4e25284;p=emacs.git (note_mouse_highlight): Return quickly if frame's glyph matrices have been freed. --- diff --git a/src/xterm.c b/src/xterm.c index cb26ec1df5d..22394aba204 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;