comparison src/testdir/test_usercommands.vim @ 20156:49694eceaa55 v8.2.0633

patch 8.2.0633: crash when using null partial in filter() Commit: https://github.com/vim/vim/commit/9d8d0b5c644ea53364d04403740b3f23e57c1497 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 24 22:47:31 2020 +0200 patch 8.2.0633: crash when using null partial in filter() Problem: Crash when using null partial in filter(). Solution: Fix crash. Add more tests. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/5976)
author Bram Moolenaar <Bram@vim.org>
date Fri, 24 Apr 2020 23:00:04 +0200
parents 0b35a7ffceb2
children 8d816c266ceb
comparison
equal deleted inserted replaced
20155:f413c0207fd1 20156:49694eceaa55
362 362
363 " custom completion without a function 363 " custom completion without a function
364 com! -complete=custom, DoCmd 364 com! -complete=custom, DoCmd
365 call assert_beeps("call feedkeys(':DoCmd \t', 'tx')") 365 call assert_beeps("call feedkeys(':DoCmd \t', 'tx')")
366 366
367 " custom completion failure with the wrong function
368 com! -complete=custom,min DoCmd
369 call assert_fails("call feedkeys(':DoCmd \t', 'tx')", 'E118:')
370
367 delcom DoCmd 371 delcom DoCmd
368 endfunc 372 endfunc
369 373
370 func CallExecute(A, L, P) 374 func CallExecute(A, L, P)
371 " Drop first '\n' 375 " Drop first '\n'