comparison src/eval.c @ 23553:5c094273c015 v8.2.2319

patch 8.2.2319: "exptype_T" can be read as "expected type" Commit: https://github.com/vim/vim/commit/657137ca487c60d63989236115115161def270a5 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 9 15:45:23 2021 +0100 patch 8.2.2319: "exptype_T" can be read as "expected type" Problem: "exptype_T" can be read as "expected type". Solution: Rename to "exprtype_T", expression type.
author Bram Moolenaar <Bram@vim.org>
date Sat, 09 Jan 2021 16:00:04 +0100
parents 1bb7fa4f9b35
children 87671ccc6c6b
comparison
equal deleted inserted replaced
23552:4c3639333c84 23553:5c094273c015
2653 static int 2653 static int
2654 eval4(char_u **arg, typval_T *rettv, evalarg_T *evalarg) 2654 eval4(char_u **arg, typval_T *rettv, evalarg_T *evalarg)
2655 { 2655 {
2656 char_u *p; 2656 char_u *p;
2657 int getnext; 2657 int getnext;
2658 exptype_T type = EXPR_UNKNOWN; 2658 exprtype_T type = EXPR_UNKNOWN;
2659 int len = 2; 2659 int len = 2;
2660 int type_is = FALSE; 2660 int type_is = FALSE;
2661 2661
2662 /* 2662 /*
2663 * Get the first variable. 2663 * Get the first variable.