summaryrefslogtreecommitdiffstats
path: root/src/debugger.c
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/debugger.c
parent556684ff71e044a642879d759373a7ebc5047fad (diff)
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/debugger.c')
-rw-r--r--src/debugger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debugger.c b/src/debugger.c
index 5dfc54e82f..91ab5ee1fa 100644
--- a/src/debugger.c
+++ b/src/debugger.c
@@ -939,7 +939,7 @@ debuggy_find(
}
else
{
- if (typval_compare(tv, bp->dbg_val, ETYPE_IS, FALSE) == OK
+ if (typval_compare(tv, bp->dbg_val, EXPR_IS, FALSE) == OK
&& tv->vval.v_number == FALSE)
{
typval_T *v;