comparison src/cmdexpand.c @ 22109:3785043f8768 v8.2.1604

patch 8.2.1604: Vim9: cannot use "true" with getcompletion() Commit: https://github.com/vim/vim/commit/d217a87755ba01fc626b1c178c682fcd05ab3a28 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 5 18:31:33 2020 +0200 patch 8.2.1604: Vim9: cannot use "true" with getcompletion() Problem: Vim9: cannot use "true" with getcompletion(). Solution: use tv_get_bool_chk(). (closes https://github.com/vim/vim/issues/6875)
author Bram Moolenaar <Bram@vim.org>
date Sat, 05 Sep 2020 18:45:04 +0200
parents eb878f85967e
children d7c1e3efa88e
comparison
equal deleted inserted replaced
22108:8647bba4ccc7 22109:3785043f8768
2883 return; 2883 return;
2884 } 2884 }
2885 type = tv_get_string(&argvars[1]); 2885 type = tv_get_string(&argvars[1]);
2886 2886
2887 if (argvars[2].v_type != VAR_UNKNOWN) 2887 if (argvars[2].v_type != VAR_UNKNOWN)
2888 filtered = tv_get_number_chk(&argvars[2], NULL); 2888 filtered = tv_get_bool_chk(&argvars[2], NULL);
2889 2889
2890 if (p_wic) 2890 if (p_wic)
2891 options |= WILD_ICASE; 2891 options |= WILD_ICASE;
2892 2892
2893 // For filtered results, 'wildignore' is used 2893 // For filtered results, 'wildignore' is used