mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
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.
This commit is contained in:
@@ -2725,11 +2725,11 @@ call_def_function(
|
||||
{
|
||||
typval_T *tv1 = STACK_TV_BOT(-2);
|
||||
typval_T *tv2 = STACK_TV_BOT(-1);
|
||||
exptype_T exptype = iptr->isn_arg.op.op_type;
|
||||
exprtype_T exprtype = iptr->isn_arg.op.op_type;
|
||||
int ic = iptr->isn_arg.op.op_ic;
|
||||
|
||||
SOURCING_LNUM = iptr->isn_lnum;
|
||||
typval_compare(tv1, tv2, exptype, ic);
|
||||
typval_compare(tv1, tv2, exprtype, ic);
|
||||
clear_tv(tv2);
|
||||
--ectx.ec_stack.ga_len;
|
||||
}
|
||||
|
Reference in New Issue
Block a user