summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-03-16 20:26:02 +0000
committerBram Moolenaar <Bram@vim.org>2022-03-16 20:26:02 +0000
commit4f6e772c9cd013a8690ab0f1efecc0ab3e855148 (patch)
treec5af0f3bb961c4dc5bfddc4e03516b59ed52cad3
parent4c8b546da2059865e20902586bb3e0ff07c279a0 (diff)
downloadvim-git-4f6e772c9cd013a8690ab0f1efecc0ab3e855148.tar.gz
patch 8.2.4583: screendump test failsv8.2.4583
Problem: Screendump test fails. Solution: Check that making a screendump is possible.
-rw-r--r--src/testdir/test_vim9_script.vim7
-rw-r--r--src/version.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/src/testdir/test_vim9_script.vim b/src/testdir/test_vim9_script.vim
index 3ad9c9d4f..94aa1e9d2 100644
--- a/src/testdir/test_vim9_script.vim
+++ b/src/testdir/test_vim9_script.vim
@@ -3982,7 +3982,12 @@ def Test_profile_with_lambda()
delete('Xprofile.vim')
enddef
-def Test_misplaced_type()
+func Test_misplaced_type()
+ CheckRunVimInTerminal
+ call Run_Test_misplaced_type()
+endfunc
+
+def Run_Test_misplaced_type()
writefile(['let g:somevar = "asdf"'], 'XTest_misplaced_type')
var buf = g:RunVimInTerminal('-S XTest_misplaced_type', {'rows': 6})
term_sendkeys(buf, ":vim9cmd echo islocked('g:somevar: string')\<CR>")
diff --git a/src/version.c b/src/version.c
index e3873d5e9..4b5088cf6 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 4583,
+/**/
4582,
/**/
4581,