diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-06 22:46:09 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-06 22:46:09 +0200 |
commit | aad222c9c9a1e4fe6ae5a1fe95bb084619be0e65 (patch) | |
tree | e889d984a59e0e3f88be9e7bc4bed27b233c0442 /src/testdir/test_expr.vim | |
parent | 93476fd6343ef40d088e064289cc279659d03953 (diff) | |
download | vim-git-aad222c9c9a1e4fe6ae5a1fe95bb084619be0e65.tar.gz |
patch 8.1.1996: more functions can be used as methodsv8.1.1996
Problem: More functions can be used as methods.
Solution: Make various functions usable as a method.
Diffstat (limited to 'src/testdir/test_expr.vim')
-rw-r--r-- | src/testdir/test_expr.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_expr.vim b/src/testdir/test_expr.vim index 9f4373278..110cecb60 100644 --- a/src/testdir/test_expr.vim +++ b/src/testdir/test_expr.vim @@ -504,7 +504,7 @@ func Test_setmatches() let set[0]['conceal'] = 5 let exp[0]['conceal'] = '5' endif - call setmatches(set) + eval set->setmatches() call assert_equal(exp, getmatches()) endfunc |