]> git.eshelyaron.com Git - emacs.git/commitdiff
(note_mouse_highlight): Return quickly if frame's
authorGerd Moellmann <gerd@gnu.org>
Thu, 2 Mar 2000 20:08:20 +0000 (20:08 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 2 Mar 2000 20:08:20 +0000 (20:08 +0000)
glyph matrices have been freed.

src/xterm.c

index cb26ec1df5d38f5a8b3ebaff5195ff13413d0ac7..22394aba204ddbdeb7d850fe1a3c4af5493d56b0 100644 (file)
@@ -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;