We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb094e1 commit 53ec795Copy full SHA for 53ec795
src/term.c
@@ -4757,10 +4757,11 @@ check_termcode(
4757
if (i - j >= 21 && STRNCMP(tp + j + 3, "rgb:", 4) == 0
4758
&& tp[j + 11] == '/' && tp[j + 16] == '/')
4759
{
4760
+#ifdef FEAT_TERMINAL
4761
int rval = hexhex2nr(tp + j + 7);
4762
int gval = hexhex2nr(tp + j + 12);
4763
int bval = hexhex2nr(tp + j + 17);
-
4764
+#endif
4765
if (is_bg)
4766
4767
char *newval = (3 * '6' < tp[j+7] + tp[j+12]
src/version.c
@@ -761,6 +761,8 @@ static char *(features[]) =
761
762
static int included_patches[] =
763
{ /* Add new patch number below this line */
764
+/**/
765
+ 1272,
766
/**/
767
1271,
768
0 commit comments