# HG changeset patch # User Christian Brabandt # Date 1500213604 -7200 # Node ID 6bbc7bc0f3ddd19807a9f7107cbc02b33aded2bf # Parent fabb9a620b6860a1b4397760928601624b8d6908 patch 8.0.0722: screen is messed by timer up at inputlist() prompt commit https://github.com/vim/vim/commit/c9041079a199d753e73d3b242f21cc8db620179a Author: Bram Moolenaar Date: Sun Jul 16 15:48:46 2017 +0200 patch 8.0.0722: screen is messed by timer up at inputlist() prompt Problem: Screen is messed by timer up at inputlist() prompt. Solution: Set state to ASKMORE. (closes https://github.com/vim/vim/issues/1843) diff --git a/src/misc1.c b/src/misc1.c --- a/src/misc1.c +++ b/src/misc1.c @@ -3592,7 +3592,7 @@ prompt_for_number(int *mouse_used) save_cmdline_row = cmdline_row; cmdline_row = 0; save_State = State; - State = CMDLINE; + State = ASKMORE; /* prevents a screen update when using a timer */ i = get_number(TRUE, mouse_used); if (KeyTyped) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 722, +/**/ 721, /**/ 720,