diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-12-12 20:34:09 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-12-12 20:34:09 +0100 |
commit | 5c5697f29829fc3b21fc5452fe8f239f6a4cb8e1 (patch) | |
tree | 9c55dc06b8069bf990df87581ffe78cd87706d4d /src/config.h.in | |
parent | 295471920def98ce84bc96e5d97c16d250c81621 (diff) | |
download | vim-git-5c5697f29829fc3b21fc5452fe8f239f6a4cb8e1.tar.gz |
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/config.h.in')
-rw-r--r-- | src/config.h.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/config.h.in b/src/config.h.in index 09420d211..8352563a3 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -390,6 +390,15 @@ /* Define if you want to include multibyte support. */ #undef FEAT_MBYTE +/* Define if you don't want to include right-left support. */ +#undef DISABLE_RIGHTLEFT + +/* Define if you don't want to include Farsi support. */ +#undef DISABLE_FARSI + +/* Define if you don't want to include Arabic support. */ +#undef DISABLE_ARABIC + /* Define if you want to always define a server name at vim startup. */ #undef FEAT_AUTOSERVERNAME |