mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 9.0.1459: typo in name of type
Problem: Typo in name of type. Solution: Change funccal_T to funccall_T. (closes #12265)
This commit is contained in:
parent
a77670726e
commit
e7d49465a4
@ -629,7 +629,7 @@ blob_filter_map(
|
|||||||
if (b->bv_lock == 0)
|
if (b->bv_lock == 0)
|
||||||
b->bv_lock = VAR_LOCKED;
|
b->bv_lock = VAR_LOCKED;
|
||||||
|
|
||||||
// Create one funccal_T for all eval_expr_typval() calls.
|
// Create one funccall_T for all eval_expr_typval() calls.
|
||||||
fc = eval_expr_get_funccal(expr, &newtv);
|
fc = eval_expr_get_funccal(expr, &newtv);
|
||||||
|
|
||||||
for (i = 0; i < b->bv_ga.ga_len; i++)
|
for (i = 0; i < b->bv_ga.ga_len; i++)
|
||||||
|
@ -904,7 +904,7 @@ get_literal_key(char_u **arg)
|
|||||||
eval_dict(char_u **arg, typval_T *rettv, evalarg_T *evalarg, int literal)
|
eval_dict(char_u **arg, typval_T *rettv, evalarg_T *evalarg, int literal)
|
||||||
{
|
{
|
||||||
int evaluate = evalarg == NULL ? FALSE
|
int evaluate = evalarg == NULL ? FALSE
|
||||||
: evalarg->eval_flags & EVAL_EVALUATE;
|
: (evalarg->eval_flags & EVAL_EVALUATE);
|
||||||
dict_T *d = NULL;
|
dict_T *d = NULL;
|
||||||
typval_T tvkey;
|
typval_T tvkey;
|
||||||
typval_T tv;
|
typval_T tv;
|
||||||
@ -1359,7 +1359,7 @@ dict_filter_map(
|
|||||||
d_ret = rettv->vval.v_dict;
|
d_ret = rettv->vval.v_dict;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create one funccal_T for all eval_expr_typval() calls.
|
// Create one funccall_T for all eval_expr_typval() calls.
|
||||||
fc = eval_expr_get_funccal(expr, &newtv);
|
fc = eval_expr_get_funccal(expr, &newtv);
|
||||||
|
|
||||||
int prev_lock = d->dv_lock;
|
int prev_lock = d->dv_lock;
|
||||||
|
@ -2401,7 +2401,7 @@ list_filter_map(
|
|||||||
if (l->lv_lock == 0)
|
if (l->lv_lock == 0)
|
||||||
l->lv_lock = VAR_LOCKED;
|
l->lv_lock = VAR_LOCKED;
|
||||||
|
|
||||||
// Create one funccal_T for all eval_expr_typval() calls.
|
// Create one funccall_T for all eval_expr_typval() calls.
|
||||||
fc = eval_expr_get_funccal(expr, &newtv);
|
fc = eval_expr_get_funccal(expr, &newtv);
|
||||||
|
|
||||||
if (l->lv_first == &range_list_item)
|
if (l->lv_first == &range_list_item)
|
||||||
@ -3064,7 +3064,7 @@ list_reduce(
|
|||||||
if (l == NULL)
|
if (l == NULL)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Create one funccal_T for all eval_expr_typval() calls.
|
// Create one funccall_T for all eval_expr_typval() calls.
|
||||||
fc = eval_expr_get_funccal(expr, rettv);
|
fc = eval_expr_get_funccal(expr, rettv);
|
||||||
|
|
||||||
prev_locked = l->lv_lock;
|
prev_locked = l->lv_lock;
|
||||||
|
@ -902,7 +902,7 @@ string_filter_map(
|
|||||||
// set_vim_var_nr() doesn't set the type
|
// set_vim_var_nr() doesn't set the type
|
||||||
set_vim_var_type(VV_KEY, VAR_NUMBER);
|
set_vim_var_type(VV_KEY, VAR_NUMBER);
|
||||||
|
|
||||||
// Create one funccal_T for all eval_expr_typval() calls.
|
// Create one funccall_T for all eval_expr_typval() calls.
|
||||||
fc = eval_expr_get_funccal(expr, &newtv);
|
fc = eval_expr_get_funccal(expr, &newtv);
|
||||||
|
|
||||||
ga_init2(&ga, sizeof(char), 80);
|
ga_init2(&ga, sizeof(char), 80);
|
||||||
@ -981,7 +981,7 @@ string_reduce(
|
|||||||
else
|
else
|
||||||
copy_tv(&argvars[2], rettv);
|
copy_tv(&argvars[2], rettv);
|
||||||
|
|
||||||
// Create one funccal_T for all eval_expr_typval() calls.
|
// Create one funccall_T for all eval_expr_typval() calls.
|
||||||
fc = eval_expr_get_funccal(expr, rettv);
|
fc = eval_expr_get_funccal(expr, rettv);
|
||||||
|
|
||||||
for ( ; *p != NUL; p += len)
|
for ( ; *p != NUL; p += len)
|
||||||
|
@ -1896,7 +1896,7 @@ struct funccall_S
|
|||||||
// funccal
|
// funccal
|
||||||
int fc_copyID; // for garbage collection
|
int fc_copyID; // for garbage collection
|
||||||
garray_T fc_ufuncs; // list of ufunc_T* which keep a reference to
|
garray_T fc_ufuncs; // list of ufunc_T* which keep a reference to
|
||||||
// "func"
|
// "fc_func"
|
||||||
};
|
};
|
||||||
|
|
||||||
// structure used as item in "fc_defer"
|
// structure used as item in "fc_defer"
|
||||||
|
@ -695,6 +695,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1459,
|
||||||
/**/
|
/**/
|
||||||
1458,
|
1458,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user