comparison src/testdir/test_vim9_cmd.vim @ 23205:d998222d314d v8.2.2148

patch 8.2.2148: Vim9: crash when user command doesn't match Commit: https://github.com/vim/vim/commit/1c0aa97827f30e3051ee50a0690555c2c23c0ceb Author: Bram Moolenaar <Bram@vim.org> Date: Wed Dec 16 21:43:54 2020 +0100 patch 8.2.2148: Vim9: crash when user command doesn't match Problem: Vim9: crash when user command doesn't match. Solution: Adjust command index. (closes https://github.com/vim/vim/issues/7479)
author Bram Moolenaar <Bram@vim.org>
date Wed, 16 Dec 2020 21:45:06 +0100
parents 4ba101403fa2
children 4b7e996354e0
comparison
equal deleted inserted replaced
23204:a5acdf9557e8 23205:d998222d314d
699 assert_equal(1, getcurpos()[1]) 699 assert_equal(1, getcurpos()[1])
700 bwipe 700 bwipe
701 delete('Xfile') 701 delete('Xfile')
702 enddef 702 enddef
703 703
704 def Test_ambiguous_user_cmd()
705 var lines =<< trim END
706 com Cmd1 eval 0
707 com Cmd2 eval 0
708 Cmd
709 END
710 CheckScriptFailure(lines, 'E464:')
711 enddef
712
704 713
705 " vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker 714 " vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker