diff options
| author | Gerd Moellmann | 2000-03-02 20:08:20 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-03-02 20:08:20 +0000 |
| commit | 04fff9c055a8f6a304dd11de237c0f22c4e25284 (patch) | |
| tree | 6325b4f6ea5428c8a08e970b01530b10739a662c /src | |
| parent | 0d0c76b8b3a82697275c9d3e0cb856f73aee3bd2 (diff) | |
| download | emacs-04fff9c055a8f6a304dd11de237c0f22c4e25284.tar.gz emacs-04fff9c055a8f6a304dd11de237c0f22c4e25284.zip | |
(note_mouse_highlight): Return quickly if frame's
glyph matrices have been freed.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 3 |
1 files changed, 2 insertions, 1 deletions
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) | |||
| 6252 | return; | 6252 | return; |
| 6253 | #endif | 6253 | #endif |
| 6254 | 6254 | ||
| 6255 | if (disable_mouse_highlight) | 6255 | if (disable_mouse_highlight |
| 6256 | || !f->glyphs_initialized_p) | ||
| 6256 | return; | 6257 | return; |
| 6257 | 6258 | ||
| 6258 | dpyinfo->mouse_face_mouse_x = x; | 6259 | dpyinfo->mouse_face_mouse_x = x; |