summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-12-12 20:34:09 +0100
committerBram Moolenaar <Bram@vim.org>2018-12-12 20:34:09 +0100
commit5c5697f29829fc3b21fc5452fe8f239f6a4cb8e1 (patch)
tree9c55dc06b8069bf990df87581ffe78cd87706d4d /src/feature.h
parent295471920def98ce84bc96e5d97c16d250c81621 (diff)
patch 8.1.0578: cannot disable arabic, rightleft and farsi in configurev8.1.0578
Problem: Cannot disable arabic, rightleft and farsi in configure. Solution: Add configur flags. (Diego Fernando CarriĆ³n, closes #1867)
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/feature.h b/src/feature.h
index 6ae3ac23fa..9e87345dc0 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -263,7 +263,7 @@
*
* Disabled for EBCDIC as it requires multibyte.
*/
-#if defined(FEAT_BIG) && !defined(EBCDIC)
+#if defined(FEAT_BIG) && !defined(DISABLE_RIGHTLEFT) && !defined(EBCDIC)
# define FEAT_RIGHTLEFT
#endif
@@ -273,7 +273,7 @@
*
* Disabled for EBCDIC as it requires multibyte.
*/
-#if defined(FEAT_BIG) && !defined(EBCDIC)
+#if defined(FEAT_BIG) && !defined(DISABLE_FARSI) && !defined(EBCDIC)
# define FEAT_FKMAP
#endif
#ifdef FEAT_FKMAP
@@ -288,7 +288,7 @@
*
* Disabled for EBCDIC as it requires multibyte.
*/
-#if defined(FEAT_BIG) && VIM_SIZEOF_INT >= 4 && !defined(EBCDIC)
+#if defined(FEAT_BIG) && !defined(DISABLE_ARABIC) && VIM_SIZEOF_INT >= 4 && !defined(EBCDIC)
# define FEAT_ARABIC
#endif
#ifdef FEAT_ARABIC