diff src/dict.c @ 32256:252b06c87796 v9.0.1459

patch 9.0.1459: typo in name of type Commit: https://github.com/vim/vim/commit/e7d49465a4ad390c1b0fb6d6b97bc30241fe5db9 Author: zeertzjq <zeertzjq@outlook.com> Date: Sun Apr 16 20:53:55 2023 +0100 patch 9.0.1459: typo in name of type Problem: Typo in name of type. Solution: Change funccal_T to funccall_T. (closes https://github.com/vim/vim/issues/12265)
author Bram Moolenaar <Bram@vim.org>
date Sun, 16 Apr 2023 22:00:02 +0200
parents 5848a0867b26
children 7a1a9ce831c3
line wrap: on
line diff
--- 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;