patch 8.1.0579: cannot attach properties to text
Problem: Cannot attach properties to text.
Solution: First part of adding text properties.
diff --git a/src/version.c b/src/version.c
index fafba67..2c4dd72 100644
--- a/src/version.c
+++ b/src/version.c
@@ -653,12 +653,6 @@
# else
"-terminfo",
# endif
-#else /* unix always includes termcap support */
-# ifdef HAVE_TGETENT
- "+tgetent",
-# else
- "-tgetent",
-# endif
#endif
#ifdef FEAT_TERMRESPONSE
"+termresponse",
@@ -670,6 +664,19 @@
#else
"-textobjects",
#endif
+#ifdef FEAT_TEXT_PROP
+ "+textprop",
+#else
+ "-textprop",
+#endif
+#if !defined(UNIX)
+/* unix always includes termcap support */
+# ifdef HAVE_TGETENT
+ "+tgetent",
+# else
+ "-tgetent",
+# endif
+#endif
#ifdef FEAT_TIMERS
"+timers",
#else
@@ -793,6 +800,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 579,
+/**/
578,
/**/
577,