changeset 22139:c7fb7361df33 v8.2.1619

patch 8.2.1619: Vim9: cannot pass "true" to spellsuggest() Commit: https://github.com/vim/vim/commit/7c27f337bf278babc1ccdcb66ac975f115d660b7 Author: Bram Moolenaar <Bram@vim.org> 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)
author Bram Moolenaar <Bram@vim.org>
date Sat, 05 Sep 2020 23:00:03 +0200
parents 356628b532d9
children 9f0e6dabb1b0
files src/evalfunc.c src/testdir/test_vim9_func.vim src/version.c
diffstat 3 files changed, 11 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;
 	    }
--- 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")
--- 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,