patch 8.0.1175: build failure without +termresponse
Problem: Build failure without +termresponse.
Solution: Add #ifdef.
diff --git a/src/syntax.c b/src/syntax.c
index d7c482d..8444db3 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -7350,10 +7350,12 @@
else
color = color_numbers_8[idx];
}
+#ifdef FEAT_TERMRESPONSE
if (t_colors >= 256 && color == 15 && is_mac_terminal)
/* Terminal.app has a bug: 15 is light grey. Use white
* from the color cube instead. */
color = 231;
+#endif
}
return color;
}
diff --git a/src/version.c b/src/version.c
index 1d21277..b31943f 100644
--- a/src/version.c
+++ b/src/version.c
@@ -762,6 +762,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1175,
+/**/
1174,
/**/
1173,