aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_functions.vim
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-11-06 17:11:25 +0800
committerGitHub <noreply@github.com>2022-11-06 17:11:25 +0800
commitc30226c28b44f1eefd495f7345219b62662c0dbc (patch)
tree486e1e2d9d5809d5cfc041959c777939c0ef3ef6 /src/nvim/testdir/test_functions.vim
parentc6af296cf8e381731f8a233cf89396e0dc7fd4ba (diff)
parent70843631fe8d2e8e93e6ecf7d08c7824352938b7 (diff)
downloadrneovim-c30226c28b44f1eefd495f7345219b62662c0dbc.tar.gz
rneovim-c30226c28b44f1eefd495f7345219b62662c0dbc.tar.bz2
rneovim-c30226c28b44f1eefd495f7345219b62662c0dbc.zip
Merge pull request #20962 from zeertzjq/vim-8.2.1736
vim-patch:8.2.{1736,3719,3744}
Diffstat (limited to 'src/nvim/testdir/test_functions.vim')
-rw-r--r--src/nvim/testdir/test_functions.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_functions.vim b/src/nvim/testdir/test_functions.vim
index 743022ece4..b464f6591d 100644
--- a/src/nvim/testdir/test_functions.vim
+++ b/src/nvim/testdir/test_functions.vim
@@ -941,6 +941,7 @@ func Test_match_func()
call assert_equal(4, match('testing', 'ing', -1))
call assert_fails("let x=match('testing', 'ing', 0, [])", 'E745:')
call assert_equal(-1, match(v:_null_list, 2))
+ call assert_equal(-1, match('abc', '\\%('))
endfunc
func Test_matchend()