diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-07-02 20:27:50 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-07-02 20:27:50 +0200 |
commit | 75464dc434c43efac60e8bfd9bec2a8b736407e9 (patch) | |
tree | 03b1a4f18d738e9c9bd21f5663d27279427622e8 /src/main.c | |
parent | 951fa1819ad0e74d73e885d0ec04dd6c70f8d2f7 (diff) | |
download | vim-git-75464dc434c43efac60e8bfd9bec2a8b736407e9.tar.gz |
patch 7.4.1983v7.4.1983
Problem: farsi.c and arabic.c are included in a strange way.
Solution: Build them like other files.
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/main.c b/src/main.c index 989c78efe..dcede31e4 100644 --- a/src/main.c +++ b/src/main.c @@ -4186,17 +4186,3 @@ serverConvert( return res; } #endif - -/* - * When FEAT_FKMAP is defined, also compile the Farsi source code. - */ -#if defined(FEAT_FKMAP) || defined(PROTO) -# include "farsi.c" -#endif - -/* - * When FEAT_ARABIC is defined, also compile the Arabic source code. - */ -#if defined(FEAT_ARABIC) || defined(PROTO) -# include "arabic.c" -#endif |