From: Bram Moolenaar Date: Sun, 16 Jul 2017 13:48:46 +0000 (+0200) Subject: patch 8.0.0722: screen is messed by timer up at inputlist() prompt X-Git-Tag: v8.0.0722 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c9041079a199d753e73d3b242f21cc8db620179a;p=vim 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 #1843) --- diff --git a/src/misc1.c b/src/misc1.c index 7c2f26cfe..4f33015a7 100644 --- 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 index 906e3fa97..91e6deda0 100644 --- a/src/version.c +++ b/src/version.c @@ -769,6 +769,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 722, /**/ 721, /**/