# HG changeset patch # User Christian Brabandt # Date 1485897304 -3600 # Node ID abc27e523e2a961557bd77ad750d2fe45c305599 # Parent 52c8f9e0feace595a61e6b4c66e87a69930e39fa patch 8.0.0275: the screen may be updated at the wrong time commit https://github.com/vim/vim/commit/e3caa1109072b9655f8d5103c92efd73177f8577 Author: Bram Moolenaar Date: Tue Jan 31 22:07:42 2017 +0100 patch 8.0.0275: the screen may be updated at the wrong time Problem: When checking for CTRL-C typed the GUI may detect a screen resize and redraw the screen, causing trouble. Solution: Set updating_screen in ui_breakcheck(). diff --git a/src/ui.c b/src/ui.c --- a/src/ui.c +++ b/src/ui.c @@ -363,12 +363,19 @@ ui_breakcheck(void) void ui_breakcheck_force(int force) { + int save_us = updating_screen; + + /* We do not want gui_resize_shell() to redraw the screen here. */ + ++updating_screen; + #ifdef FEAT_GUI if (gui.in_use) gui_mch_update(); else #endif mch_breakcheck(force); + + updating_screen = save_us; } /***************************************************************************** diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 275, +/**/ 274, /**/ 273,