From 8ffb7e051da74afef7264e1f25a7142f15aa1f60 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 3 Dec 2022 10:13:30 +0000 Subject: [PATCH] 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. --- src/term.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/term.c b/src/term.c index 3df121433..13e3709fb 100644 --- a/src/term.c +++ b/src/term.c @@ -5296,7 +5296,7 @@ handle_csi( 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. diff --git a/src/version.c b/src/version.c index 8ccf7d2b3..682beb087 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 997, /**/ 996, /**/ -- 2.40.0