# HG changeset patch # User Eli Zaretskii # Date 952338177 0 # Node ID 5b87cdbef5a8bdba7a543e4e515bce4465cbad9b # Parent 817c55b5288ab3d37c95082cd43f22ba92fbb856 (IT_note_mouse_highlight): Return immediately if frame's glyph matrices have been freed. diff -r 817c55b5288a -r 5b87cdbef5a8 src/msdos.c --- a/src/msdos.c Sun Mar 05 20:25:40 2000 +0000 +++ b/src/msdos.c Mon Mar 06 10:22:57 2000 +0000 @@ -1252,7 +1252,8 @@ if (mouse_preempted) return; - if (disable_mouse_highlight) + if (disable_mouse_highlight + || !f->glyphs_initialized_p) return; dpyinfo->mouse_face_mouse_x = x;