diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-09-03 10:05:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-03 10:05:45 +0800 |
commit | 36cb3262b93d8e60f9c5bffc8c820838860b302c (patch) | |
tree | 4acf57e7a0c466c11e34d2c9dd9603dffa82ffb6 /test | |
parent | 272c4fba8386ccc17706647c6b28fa70f43e1e66 (diff) | |
parent | 15298e79269e95899b9812c78af19f954b3bcba6 (diff) | |
download | rneovim-36cb3262b93d8e60f9c5bffc8c820838860b302c.tar.gz rneovim-36cb3262b93d8e60f9c5bffc8c820838860b302c.tar.bz2 rneovim-36cb3262b93d8e60f9c5bffc8c820838860b302c.zip |
Merge pull request #24991 from zeertzjq/vim-9.0.1846
vim-patch:9.0.{1846,1847}
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/test_functions.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/old/testdir/test_functions.vim b/test/old/testdir/test_functions.vim index 37541c4af3..eff4e36f34 100644 --- a/test/old/testdir/test_functions.vim +++ b/test/old/testdir/test_functions.vim @@ -3273,4 +3273,9 @@ func Test_string_reverse() let &encoding = save_enc endfunc +func Test_fullcommand() + " this used to crash vim + call assert_equal('', fullcommand(10)) +endfunc + " vim: shiftwidth=2 sts=2 expandtab |