patch 9.0.0890: no test for what patch 9.0.0827 fixes
Problem: No test for what patch 9.0.0827 fixes.
Solution: Add a test (still doesn't fail when fix is reverted).
diff --git a/src/term.c b/src/term.c
index 4d43139..b626aef 100644
--- a/src/term.c
+++ b/src/term.c
@@ -4720,7 +4720,7 @@
// else if (version == 115 && arg[0] == 0 && arg[2] == 0)
// term_props[TPR_UNDERLINE_RGB].tpr_status = TPR_YES;
- // Kitty sends 1;400{version};{secondary-version}
+ // Kitty up to 9.x sends 1;400{version};{secondary-version}
if (arg[0] == 1 && arg[1] >= 4000 && arg[1] <= 4009)
{
term_props[TPR_KITTY].tpr_status = TPR_YES;
@@ -5520,7 +5520,8 @@
// no match for "code;*X" with "code;"
continue;
else if (termcodes[idx].code[modslen] == '@'
- && (tp[modslen] != '1' || tp[modslen + 1] != ';'))
+ && (tp[modslen] != '1'
+ || tp[modslen + 1] != ';'))
// no match for "<Esc>[@" with "<Esc>[1;"
continue;
else