diff --git a/src/testdir/test_timers.vim b/src/testdir/test_timers.vim index 2625013ae4..de72c78db0 100644 --- a/src/testdir/test_timers.vim +++ b/src/testdir/test_timers.vim @@ -379,11 +379,13 @@ func Test_nocatch_timer_garbage_collect() let a = {'foo', 'bar'} endfunc func FeedChar(id) - call feedkeys('x', 't') + call feedkeys(":\", 't') endfunc call timer_start(300, 'FeedChar') call timer_start(100, 'CauseAnError') - let x = getchar() + let x = getchar() " wait for error in timer + let x = getchar(0) " read any remaining chars + let x = getchar(0) set ut& call test_override('no_wait_return', 1) diff --git a/src/version.c b/src/version.c index 48f2ca559b..7b4e24f953 100644 --- a/src/version.c +++ b/src/version.c @@ -699,6 +699,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 559, /**/ 558, /**/