diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-18 23:01:56 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-18 23:01:56 +0200 |
commit | 073e4b92e613d22ce7b16e0fbf5c0e40cb5f9b2c (patch) | |
tree | 627a153c9bb3076e512a6b0209227b66d5255ce5 /src/testdir/test_balloon_gui.vim | |
parent | 0a52df50a0e8fce6f5e0eb5f5373dcd0fa24d83a (diff) | |
download | vim-git-073e4b92e613d22ce7b16e0fbf5c0e40cb5f9b2c.tar.gz |
patch 8.1.1888: more functions can be used as methodsv8.1.1888
Problem: More functions can be used as methods.
Solution: Make various functions usable as a method.
Diffstat (limited to 'src/testdir/test_balloon_gui.vim')
-rw-r--r-- | src/testdir/test_balloon_gui.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_balloon_gui.vim b/src/testdir/test_balloon_gui.vim index 5b486c0b7..70a88f36f 100644 --- a/src/testdir/test_balloon_gui.vim +++ b/src/testdir/test_balloon_gui.vim @@ -12,7 +12,7 @@ func Test_balloon_show_gui() call balloon_show('') let msg = 'that that' - call balloon_show(msg) + eval msg->balloon_show() call assert_equal(msg, balloon_gettext()) sleep 10m call balloon_show('') |