diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-02-07 05:34:20 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-02-07 05:34:20 +0800 |
commit | fe621b4ac01c6865650794b8e986665be4fe0ae7 (patch) | |
tree | 9882e065f6e6fb118ace1353ad547f19bae9e877 /test/functional/legacy/eval_spec.lua | |
parent | e6e9ffb3456607747132e398039ea8de16553a52 (diff) | |
download | rneovim-fe621b4ac01c6865650794b8e986665be4fe0ae7.tar.gz rneovim-fe621b4ac01c6865650794b8e986665be4fe0ae7.tar.bz2 rneovim-fe621b4ac01c6865650794b8e986665be4fe0ae7.zip |
vim-patch:8.1.0711: test files still use function!
Problem: Test files still use function!.
Solution: Remove the exclamation mark. Fix overwriting a function.
https://github.com/vim/vim/commit/1e1153600c0377472d62cc553173fe555ddcf5a7
Some of the changes were already applied previously.
Diffstat (limited to 'test/functional/legacy/eval_spec.lua')
-rw-r--r-- | test/functional/legacy/eval_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/legacy/eval_spec.lua b/test/functional/legacy/eval_spec.lua index b5de5cd232..05d853622e 100644 --- a/test/functional/legacy/eval_spec.lua +++ b/test/functional/legacy/eval_spec.lua @@ -666,7 +666,7 @@ describe('eval', function() source([[ " Vim script used in test_eval.in. Needed for script-local function. - func! s:Testje() + func s:Testje() return "foo" endfunc |