vim-patch:8.2.0069: ETYPE_ is used for two different enums

Problem:    ETYPE_ is used for two different enums.
Solution:   Rename one to use EXPR_.
87396072c5
This commit is contained in:
Jan Edmund Lazo
2021-04-07 21:57:40 -04:00
parent de16fbcc57
commit ca214311d2
3 changed files with 71 additions and 71 deletions

View File

@@ -876,7 +876,7 @@ debuggy_find(
debug_newval = typval_tostring(bp->dbg_val);
line = true;
} 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) {
line = true;
debug_oldval = typval_tostring(bp->dbg_val);