# HG changeset patch # User Bram Moolenaar # Date 1599339603 -7200 # Node ID c7fb7361df33a902a6d29d37a166089fbdc2dbe6 # Parent 356628b532d9c26ed3f979b7b878aac49c42c8fd patch 8.2.1619: Vim9: cannot pass "true" to spellsuggest() Commit: https://github.com/vim/vim/commit/7c27f337bf278babc1ccdcb66ac975f115d660b7 Author: Bram Moolenaar Date: Sat Sep 5 22:45:55 2020 +0200 patch 8.2.1619: Vim9: cannot pass "true" to spellsuggest() Problem: Vim9: cannot pass "true" to spellsuggest(). Solution: Use tv_get_bool_chk(). (closes https://github.com/vim/vim/issues/6883) diff --git a/src/evalfunc.c b/src/evalfunc.c --- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -7828,7 +7828,7 @@ f_spellsuggest(typval_T *argvars UNUSED, return; if (argvars[2].v_type != VAR_UNKNOWN) { - need_capital = (int)tv_get_number_chk(&argvars[2], &typeerr); + need_capital = (int)tv_get_bool_chk(&argvars[2], &typeerr); if (typeerr) return; } diff --git a/src/testdir/test_vim9_func.vim b/src/testdir/test_vim9_func.vim --- a/src/testdir/test_vim9_func.vim +++ b/src/testdir/test_vim9_func.vim @@ -1628,6 +1628,14 @@ def Test_setreg() assert_equal(reginfo, getreginfo('a')) enddef +def Test_spellsuggest() + if !has('spell') + MissingFeature 'spell' + else + spellsuggest('marrch', 1, true)->assert_equal(['March']) + endif +enddef + def Test_synID() new setline(1, "text") diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1619, +/**/ 1618, /**/ 1617,