aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2000-03-06 10:24:37 +0000
committerEli Zaretskii2000-03-06 10:24:37 +0000
commit515d0d0e8869d97d3dcb5aec09e259c33605391c (patch)
tree7ef237524b176317af94aec08d2f616005f14d2e /src
parent6178bc237004863e16a9d8b07a0c8ad90244c34d (diff)
downloademacs-515d0d0e8869d97d3dcb5aec09e259c33605391c.tar.gz
emacs-515d0d0e8869d97d3dcb5aec09e259c33605391c.zip
(IT_note_mouse_highlight): Return immediately if frame's
glyph matrices have been freed.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/msdos.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 82445b64fd7..b97ad5ef07e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12000-03-06 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * msdos.c (IT_note_mouse_highlight): Return immediately if frame's
4 glyph matrices have been freed.
5
12000-03-05 Gerd Moellmann <gerd@gnu.org> 62000-03-05 Gerd Moellmann <gerd@gnu.org>
2 7
3 * Makefile.in (tags): Include ../lwlib/TAGS in TAGS. 8 * Makefile.in (tags): Include ../lwlib/TAGS in TAGS.
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;