# HG changeset patch # User Christian Brabandt # Date 1528918206 -7200 # Node ID 320956bddcef6b8379d5ab25d7b073454e736502 # Parent ec0ce6a5f231b55c649f94c1be5492ac5ee2215e patch 8.1.0055: complete test has wrong order of arguments commit https://github.com/vim/vim/commit/52d3aaeea4c85406f46e2051729e4f007f83b35e Author: Bram Moolenaar Date: Wed Jun 13 21:27:24 2018 +0200 patch 8.1.0055: complete test has wrong order of arguments Problem: Complete test has wrong order of arguments. Wrong type for sentinel variable. Solution: Swap arguments, use VAR_UNKNOWN. (Ozaki Kiichi) diff --git a/src/mbyte.c b/src/mbyte.c --- a/src/mbyte.c +++ b/src/mbyte.c @@ -4799,7 +4799,7 @@ call_imactivatefunc(int active) argv[0].v_type = VAR_NUMBER; argv[0].vval.v_number = active ? 1 : 0; - argv[1].v_type = VAR_NUMBER; + argv[1].v_type = VAR_UNKNOWN; (void)call_func_retnr(p_imaf, 1, argv, FALSE); } diff --git a/src/testdir/test_ins_complete.vim b/src/testdir/test_ins_complete.vim --- a/src/testdir/test_ins_complete.vim +++ b/src/testdir/test_ins_complete.vim @@ -126,15 +126,15 @@ func Test_completefunc_args() set completefunc=CompleteFunc call feedkeys("i\\\", 'x') - call assert_equal(s:args[0], [1, 1]) - call assert_equal(s:args[1][0], 0) + call assert_equal([1, 1], s:args[0]) + call assert_equal(0, s:args[1][0]) set completefunc= let s:args = [] set omnifunc=CompleteFunc call feedkeys("i\\\", 'x') - call assert_equal(s:args[0], [1, 1]) - call assert_equal(s:args[1][0], 0) + call assert_equal([1, 1], s:args[0]) + call assert_equal(0, s:args[1][0]) set omnifunc= bwipe! diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 55, +/**/ 54, /**/ 53,