commit | 8ffb7e051da74afef7264e1f25a7142f15aa1f60 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Dec 03 10:13:30 2022 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Dec 03 10:13:30 2022 +0000 |
tree | 96e7c55a4307f8b45102fc01c73422323369aef5 | |
parent | af19ec0bfad6b70f3b7898da7f786a348ac01b50 [diff] [blame] |
patch 9.0.0997: Coverity warns for dead code Problem: Coverity warns for dead code. Solution: Don't use ASCII_ISUPPER() for a negative value.
diff --git a/src/term.c b/src/term.c index 3df1214..13e3709 100644 --- a/src/term.c +++ b/src/term.c
@@ -5296,7 +5296,7 @@ if (!VIM_ISDIGIT(*ap)) first = *ap++; - if (ASCII_ISUPPER(first)) + if (first >= 'A' && first <= 'Z') { // If "first" is in [ABCDEFHPQRS] then it is actually the "trail" and // no argument follows.