mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 17:28:23 +00:00
vim-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.
657137ca48
Vim9 changes omitted.
This commit is contained in:
@@ -3417,7 +3417,7 @@ static int eval4(char_u **arg, typval_T *rettv, int evaluate)
|
|||||||
{
|
{
|
||||||
typval_T var2;
|
typval_T var2;
|
||||||
char_u *p;
|
char_u *p;
|
||||||
exptype_T type = EXPR_UNKNOWN;
|
exprtype_T type = EXPR_UNKNOWN;
|
||||||
int len = 2;
|
int len = 2;
|
||||||
bool ic;
|
bool ic;
|
||||||
|
|
||||||
@@ -10588,7 +10588,7 @@ bool invoke_prompt_interrupt(void)
|
|||||||
int typval_compare(
|
int typval_compare(
|
||||||
typval_T *typ1, // first operand
|
typval_T *typ1, // first operand
|
||||||
typval_T *typ2, // second operand
|
typval_T *typ2, // second operand
|
||||||
exptype_T type, // operator
|
exprtype_T type, // operator
|
||||||
bool ic // ignore case
|
bool ic // ignore case
|
||||||
)
|
)
|
||||||
FUNC_ATTR_NONNULL_ALL
|
FUNC_ATTR_NONNULL_ALL
|
||||||
|
@@ -241,7 +241,7 @@ typedef enum {
|
|||||||
EXPR_NOMATCH, ///< !~
|
EXPR_NOMATCH, ///< !~
|
||||||
EXPR_IS, ///< is
|
EXPR_IS, ///< is
|
||||||
EXPR_ISNOT, ///< isnot
|
EXPR_ISNOT, ///< isnot
|
||||||
} exptype_T;
|
} exprtype_T;
|
||||||
|
|
||||||
/// Type for dict_list function
|
/// Type for dict_list function
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
Reference in New Issue
Block a user