summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-10-08 15:30:55 +0100
committerBram Moolenaar <Bram@vim.org>2022-10-08 15:30:55 +0100
commitfbdce1850098e7e9364993cd8c51e4a686c01ae9 (patch)
tree7204c40adb1b66890d876b0dcb3463793499a296 /src/feature.h
parent0089ce293f885afc2b77f12aa110f33b2101973a (diff)
patch 9.0.0696: it is unclear if the +rightleft and +arabic features are usedv9.0.0696
Problem: It is unclear if the +rightleft and +arabic features are actively being used. Solution: Disable the features, await feedback.
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/feature.h b/src/feature.h
index 2c65253a04..4de298925b 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -236,6 +236,18 @@
# 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.