diff options
Diffstat (limited to 'src/msdos.c')
| -rw-r--r-- | src/msdos.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/msdos.c b/src/msdos.c index ed5d3240aa1..bac6b977fdf 100644 --- a/src/msdos.c +++ b/src/msdos.c | |||
| @@ -1229,7 +1229,7 @@ IT_update_begin (struct frame *f) | |||
| 1229 | if (display_info->termscript) | 1229 | if (display_info->termscript) |
| 1230 | fprintf (display_info->termscript, "\n\n<UPDATE_BEGIN"); | 1230 | fprintf (display_info->termscript, "\n\n<UPDATE_BEGIN"); |
| 1231 | 1231 | ||
| 1232 | BLOCK_INPUT; | 1232 | block_input (); |
| 1233 | 1233 | ||
| 1234 | if (f && f == mouse_face_frame) | 1234 | if (f && f == mouse_face_frame) |
| 1235 | { | 1235 | { |
| @@ -1279,7 +1279,7 @@ IT_update_begin (struct frame *f) | |||
| 1279 | hlinfo->mouse_face_mouse_frame = NULL; | 1279 | hlinfo->mouse_face_mouse_frame = NULL; |
| 1280 | } | 1280 | } |
| 1281 | 1281 | ||
| 1282 | UNBLOCK_INPUT; | 1282 | unblock_input (); |
| 1283 | } | 1283 | } |
| 1284 | 1284 | ||
| 1285 | static void | 1285 | static void |
| @@ -1302,13 +1302,13 @@ IT_frame_up_to_date (struct frame *f) | |||
| 1302 | if (hlinfo->mouse_face_deferred_gc | 1302 | if (hlinfo->mouse_face_deferred_gc |
| 1303 | || (f && f == hlinfo->mouse_face_mouse_frame)) | 1303 | || (f && f == hlinfo->mouse_face_mouse_frame)) |
| 1304 | { | 1304 | { |
| 1305 | BLOCK_INPUT; | 1305 | block_input (); |
| 1306 | if (hlinfo->mouse_face_mouse_frame) | 1306 | if (hlinfo->mouse_face_mouse_frame) |
| 1307 | note_mouse_highlight (hlinfo->mouse_face_mouse_frame, | 1307 | note_mouse_highlight (hlinfo->mouse_face_mouse_frame, |
| 1308 | hlinfo->mouse_face_mouse_x, | 1308 | hlinfo->mouse_face_mouse_x, |
| 1309 | hlinfo->mouse_face_mouse_y); | 1309 | hlinfo->mouse_face_mouse_y); |
| 1310 | hlinfo->mouse_face_deferred_gc = 0; | 1310 | hlinfo->mouse_face_deferred_gc = 0; |
| 1311 | UNBLOCK_INPUT; | 1311 | unblock_input (); |
| 1312 | } | 1312 | } |
| 1313 | 1313 | ||
| 1314 | /* Set the cursor type to whatever they wanted. In a minibuffer | 1314 | /* Set the cursor type to whatever they wanted. In a minibuffer |