# HG changeset patch # User Bram Moolenaar # Date 1647462603 -3600 # Node ID 106795d5106e9b24f53e5b3dcfaac6838f05478d # Parent 95f9694da58600ed27944ad2e80ee788cc209bf0 patch 8.2.4583: screendump test fails Commit: https://github.com/vim/vim/commit/4f6e772c9cd013a8690ab0f1efecc0ab3e855148 Author: Bram Moolenaar Date: Wed Mar 16 20:26:02 2022 +0000 patch 8.2.4583: screendump test fails Problem: Screendump test fails. Solution: Check that making a screendump is possible. diff --git a/src/testdir/test_vim9_script.vim b/src/testdir/test_vim9_script.vim --- 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')\") diff --git a/src/version.c b/src/version.c --- 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,