diff --git a/src/ui.c b/src/ui.c index ad2919052e..4da79f0c1d 100644 --- 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 index 5814b206f4..d8b82a87a9 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 275, /**/ 274, /**/