summaryrefslogtreecommitdiffstats
path: root/src/dict.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-04-16 20:53:55 +0100
committerBram Moolenaar <Bram@vim.org>2023-04-16 20:53:55 +0100
commite7d49465a4ad390c1b0fb6d6b97bc30241fe5db9 (patch)
tree1ad57eac5490d8d424696ab81b15a7c2a256cfcd /src/dict.c
parenta77670726e3706973adffc2b118f4576e1f58ea0 (diff)
patch 9.0.1459: typo in name of typev9.0.1459
Problem: Typo in name of type. Solution: Change funccal_T to funccall_T. (closes #12265)
Diffstat (limited to 'src/dict.c')
-rw-r--r--src/dict.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dict.c b/src/dict.c
index 1ce01c15b6..ccd0b5dac2 100644
--- a/src/dict.c
+++ b/src/dict.c
@@ -904,7 +904,7 @@ get_literal_key(char_u **arg)
eval_dict(char_u **arg, typval_T *rettv, evalarg_T *evalarg, int literal)
{
int evaluate = evalarg == NULL ? FALSE
- : evalarg->eval_flags & EVAL_EVALUATE;
+ : (evalarg->eval_flags & EVAL_EVALUATE);
dict_T *d = NULL;
typval_T tvkey;
typval_T tv;
@@ -1359,7 +1359,7 @@ dict_filter_map(
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);
int prev_lock = d->dv_lock;