]> granicus.if.org Git - vim/commitdiff
patch 9.0.0696: it is unclear if the +rightleft and +arabic features are used v9.0.0696
authorBram Moolenaar <Bram@vim.org>
Sat, 8 Oct 2022 14:30:55 +0000 (15:30 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 8 Oct 2022 14:30:55 +0000 (15:30 +0100)
Problem:    It is unclear if the +rightleft and +arabic features are actively
            being used.
Solution:   Disable the features, await feedback.

src/feature.h
src/version.c

index 2c65253a04d85a38f61761372c185014c4248c04..4de298925b591ab4cfcef4fac2478b48fe77eaee 100644 (file)
 # endif
 #endif
 
+// It is unclear if there are any users of the +rightleft and +arabic fetures.
+// The lack of feedback and bug reports suggests that they are not actively
+// being used.
+// FOR NOW: disable the features here.  If nobody complains the code can be
+// removed.
+#ifdef FEAT_RIGHTLEFT
+# undef FEAT_RIGHTLEFT
+#endif
+#ifdef FEAT_ARABIC
+# undef FEAT_ARABIC
+#endif
+
 /*
  * +emacs_tags         When FEAT_EMACS_TAGS defined: Include support for
  *                     emacs style TAGS file.
index 530874a96f38f57f465c4de9481f4fcec4721430..aab70329de4b9d2164ce1f0787c585bbd1cc6881 100644 (file)
@@ -699,6 +699,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    696,
 /**/
     695,
 /**/