summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-07-16 15:48:46 +0200
committerBram Moolenaar <Bram@vim.org>2017-07-16 15:48:46 +0200
commitc9041079a199d753e73d3b242f21cc8db620179a (patch)
tree94174962c7e81536e611c9fd455b2dc129fa6f71 /src
parent90305c66a8637ea43a6509c7ab597734dd218365 (diff)
patch 8.0.0722: screen is messed by timer up at inputlist() promptv8.0.0722
Problem: Screen is messed by timer up at inputlist() prompt. Solution: Set state to ASKMORE. (closes #1843)
Diffstat (limited to 'src')
-rw-r--r--src/misc1.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/misc1.c b/src/misc1.c
index 7c2f26cfe4..4f33015a79 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 906e3fa97e..91e6deda04 100644
--- 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,