forked from aniani/vim
patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Problem: Vim9: runtime and compile time type checks are not the same. Solution: Add more runtime type checks for builtin functions. (Yegappan Lakshmanan, closes #8646)
This commit is contained in:
committed by
Bram Moolenaar
parent
5d7c2df536
commit
4490ec4e83
10
src/fold.c
10
src/fold.c
@@ -3658,6 +3658,9 @@ foldclosed_both(
|
||||
linenr_T lnum;
|
||||
linenr_T first, last;
|
||||
|
||||
if (in_vim9script() && check_for_lnum_arg(argvars, 0) == FAIL)
|
||||
return;
|
||||
|
||||
lnum = tv_get_lnum(argvars);
|
||||
if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
|
||||
{
|
||||
@@ -3701,6 +3704,9 @@ f_foldlevel(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
|
||||
# ifdef FEAT_FOLDING
|
||||
linenr_T lnum;
|
||||
|
||||
if (in_vim9script() && check_for_lnum_arg(argvars, 0) == FAIL)
|
||||
return;
|
||||
|
||||
lnum = tv_get_lnum(argvars);
|
||||
if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
|
||||
rettv->vval.v_number = foldLevel(lnum);
|
||||
@@ -3789,6 +3795,10 @@ f_foldtextresult(typval_T *argvars UNUSED, typval_T *rettv)
|
||||
|
||||
rettv->v_type = VAR_STRING;
|
||||
rettv->vval.v_string = NULL;
|
||||
|
||||
if (in_vim9script() && check_for_lnum_arg(argvars, 0) == FAIL)
|
||||
return;
|
||||
|
||||
# ifdef FEAT_FOLDING
|
||||
if (entered)
|
||||
return; // reject recursive use
|
||||
|
Reference in New Issue
Block a user