summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-09-11 12:01:04 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-11 12:01:04 +0100
commitc069edeab28bdd7289d7096cd92804cb54841557 (patch)
tree1a8a4bf3f3edbd6fcaa60fed71a2a102d1b1c638
parentf5fec05c7fd0df4c934a838e82882e601dc920cb (diff)
patch 9.0.0441: closure in for loop test fails on some systemsv9.0.0441
Problem: Closure in for loop test fails on some systems. Solution: Do not wait for the ruler to show up. (issue #11106)
-rw-r--r--src/testdir/test_vim9_func.vim2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/test_vim9_func.vim b/src/testdir/test_vim9_func.vim
index 4d6e226892..a1c58a2048 100644
--- a/src/testdir/test_vim9_func.vim
+++ b/src/testdir/test_vim9_func.vim
@@ -2939,7 +2939,7 @@ def Run_Test_closure_in_for_loop_fails()
writefile(lines, 'XTest_closure_fails', 'D')
# Check that an error shows
- var buf = g:RunVimInTerminal('-S XTest_closure_fails', {'rows': 6})
+ var buf = g:RunVimInTerminal('-S XTest_closure_fails', {rows: 6, wait_for_ruler: 0})
g:VerifyScreenDump(buf, 'Test_vim9_closure_fails', {})
# clean up
diff --git a/src/version.c b/src/version.c
index 02e55d96dd..b7bc80a1f2 100644
--- a/src/version.c
+++ b/src/version.c
@@ -704,6 +704,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 441,
+/**/
440,
/**/
439,