summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-31 22:36:18 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-31 22:36:18 +0100
commit87396072c5c468f0c129e4ec7cd944ac897b7752 (patch)
tree62701d8d592986ad4ef828a5ef5d5d85e1c37b57 /src/structs.h
parent556684ff71e044a642879d759373a7ebc5047fad (diff)
downloadvim-git-87396072c5c468f0c129e4ec7cd944ac897b7752.tar.gz
patch 8.2.0069: ETYPE_ is used for two different enumsv8.2.0069
Problem: ETYPE_ is used for two different enums. Solution: Rename one to use EXPR_.
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/structs.h b/src/structs.h
index c995d4beb..5f32e1d60 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -3662,17 +3662,17 @@ typedef struct {
*/
typedef enum
{
- ETYPE_UNKNOWN = 0,
- ETYPE_EQUAL, // ==
- ETYPE_NEQUAL, // !=
- ETYPE_GREATER, // >
- ETYPE_GEQUAL, // >=
- ETYPE_SMALLER, // <
- ETYPE_SEQUAL, // <=
- ETYPE_MATCH, // =~
- ETYPE_NOMATCH, // !~
- ETYPE_IS, // is
- ETYPE_ISNOT, // isnot
+ EXPR_UNKNOWN = 0,
+ EXPR_EQUAL, // ==
+ EXPR_NEQUAL, // !=
+ EXPR_GREATER, // >
+ EXPR_GEQUAL, // >=
+ EXPR_SMALLER, // <
+ EXPR_SEQUAL, // <=
+ EXPR_MATCH, // =~
+ EXPR_NOMATCH, // !~
+ EXPR_IS, // is
+ EXPR_ISNOT, // isnot
} exptype_T;
/*