diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-01-31 22:07:42 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-01-31 22:07:42 +0100 |
commit | e3caa1109072b9655f8d5103c92efd73177f8577 (patch) | |
tree | 20aa481c16e2b5df851d2be94ac46e11918855d9 /src/ui.c | |
parent | 070b33da93ad3a191664bb61f5ccc50781460c03 (diff) | |
download | vim-git-e3caa1109072b9655f8d5103c92efd73177f8577.tar.gz |
patch 8.0.0275: the screen may be updated at the wrong timev8.0.0275
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().
Diffstat (limited to 'src/ui.c')
-rw-r--r-- | src/ui.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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; } /***************************************************************************** |