diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-01-09 15:45:23 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-01-09 15:45:23 +0100 |
commit | 657137ca487c60d63989236115115161def270a5 (patch) | |
tree | ec833bb8e11105d23ae7e2c771d6801d0f1802fb /src/typval.c | |
parent | e7525c552060dd04aacdbca6bb5fe6460cf4da60 (diff) | |
download | vim-git-657137ca487c60d63989236115115161def270a5.tar.gz |
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/typval.c')
-rw-r--r-- | src/typval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/typval.c b/src/typval.c index d16f0e6df..e620bedd7 100644 --- a/src/typval.c +++ b/src/typval.c @@ -649,7 +649,7 @@ copy_tv(typval_T *from, typval_T *to) typval_compare( typval_T *typ1, // first operand typval_T *typ2, // second operand - exptype_T type, // operator + exprtype_T type, // operator int ic) // ignore case { int i; |