diff options
| author | Eli Zaretskii | 2000-03-06 10:24:37 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2000-03-06 10:24:37 +0000 |
| commit | 515d0d0e8869d97d3dcb5aec09e259c33605391c (patch) | |
| tree | 7ef237524b176317af94aec08d2f616005f14d2e /src/msdos.c | |
| parent | 6178bc237004863e16a9d8b07a0c8ad90244c34d (diff) | |
| download | emacs-515d0d0e8869d97d3dcb5aec09e259c33605391c.tar.gz emacs-515d0d0e8869d97d3dcb5aec09e259c33605391c.zip | |
(IT_note_mouse_highlight): Return immediately if frame's
glyph matrices have been freed.
Diffstat (limited to 'src/msdos.c')
| -rw-r--r-- | src/msdos.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/msdos.c b/src/msdos.c index c565edfc299..241bea99e7a 100644 --- a/src/msdos.c +++ b/src/msdos.c | |||
| @@ -1252,7 +1252,8 @@ IT_note_mouse_highlight (struct frame *f, int x, int y) | |||
| 1252 | if (mouse_preempted) | 1252 | if (mouse_preempted) |
| 1253 | return; | 1253 | return; |
| 1254 | 1254 | ||
| 1255 | if (disable_mouse_highlight) | 1255 | if (disable_mouse_highlight |
| 1256 | || !f->glyphs_initialized_p) | ||
| 1256 | return; | 1257 | return; |
| 1257 | 1258 | ||
| 1258 | dpyinfo->mouse_face_mouse_x = x; | 1259 | dpyinfo->mouse_face_mouse_x = x; |