diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2023-04-15 13:17:32 +0800 |
|---|---|---|
| committer | zeertzjq <zeertzjq@outlook.com> | 2023-04-15 13:31:10 +0800 |
| commit | 4b49f312a05214d5d1974f7ac2702ffb407fc558 (patch) | |
| tree | f4f7515c461d2d599e60b043995843fa54062f3e /test/old/testdir/test_execute_func.vim | |
| parent | 3d80392cab8ba41757769e18ffde9e8258365472 (diff) | |
| download | rneovim-4b49f312a05214d5d1974f7ac2702ffb407fc558.tar.gz rneovim-4b49f312a05214d5d1974f7ac2702ffb407fc558.tar.bz2 rneovim-4b49f312a05214d5d1974f7ac2702ffb407fc558.zip | |
vim-patch:8.2.0633: crash when using null partial in filter()
Problem: Crash when using null partial in filter().
Solution: Fix crash. Add more tests. (Yegappan Lakshmanan, closes vim/vim#5976)
https://github.com/vim/vim/commit/9d8d0b5c644ea53364d04403740b3f23e57c1497
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'test/old/testdir/test_execute_func.vim')
| -rw-r--r-- | test/old/testdir/test_execute_func.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_execute_func.vim b/test/old/testdir/test_execute_func.vim index 171cea1e49..cc294b7316 100644 --- a/test/old/testdir/test_execute_func.vim +++ b/test/old/testdir/test_execute_func.vim @@ -170,7 +170,7 @@ func Test_win_execute_visual_redraw() bwipe! endfunc -func Test_execute_null() +func Test_execute_cmd_with_null() call assert_equal("", execute(v:_null_string)) call assert_equal("", execute(v:_null_list)) call assert_fails('call execute(v:_null_dict)', 'E731:') |