summaryrefslogtreecommitdiffstats
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-01-09 15:45:23 +0100
committerBram Moolenaar <Bram@vim.org>2021-01-09 15:45:23 +0100
commit657137ca487c60d63989236115115161def270a5 (patch)
treeec833bb8e11105d23ae7e2c771d6801d0f1802fb /src/structs.h
parente7525c552060dd04aacdbca6bb5fe6460cf4da60 (diff)
patch 8.2.2319: "exptype_T" can be read as "expected type"v8.2.2319
Problem: "exptype_T" can be read as "expected type". Solution: Rename to "exprtype_T", expression type.
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h
index 3324b067ae..9d1f821818 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -4029,7 +4029,7 @@ typedef enum
EXPR_MULT, // *
EXPR_DIV, // /
EXPR_REM, // %
-} exptype_T;
+} exprtype_T;
/*
* Structure used for reading in json_decode().