diff options
author | Felipe Oliveira Carvalho <felipekde@gmail.com> | 2014-03-22 00:06:37 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-24 18:23:24 -0300 |
commit | 8b2a5e678e4a8f24328ecd438f6907ef25398f95 (patch) | |
tree | 4cacf8c95efd7fce0d22bfdd5cb6bda09d68e64b /src/main.c | |
parent | fd6fd35eef766d4ad80f8c0dd77e3b2dea026bcf (diff) | |
download | rneovim-8b2a5e678e4a8f24328ecd438f6907ef25398f95.tar.gz rneovim-8b2a5e678e4a8f24328ecd438f6907ef25398f95.tar.bz2 rneovim-8b2a5e678e4a8f24328ecd438f6907ef25398f95.zip |
Move arabic.h #defines from arabic.h to arabic.c
- Move arabic_shape() decl from main.h to arabic.h
- Move arabic_combine() and arabic_maycombine() from mbyte.c to
arabic.c as these functions use the #defines I moved.
- Remove the unnecessary include of arabic.h in globals.h
- Remove include of arabic.c (sic) in main.c (change CMakeLists.txt to compile
arabic.c normally)
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main.c b/src/main.c index 759366c5d3..1fec7ffc96 100644 --- a/src/main.c +++ b/src/main.c @@ -2399,8 +2399,3 @@ time_msg ( * When FEAT_FKMAP is defined, also compile the Farsi source code. */ # include "farsi.c" - -/* - * When FEAT_ARABIC is defined, also compile the Arabic source code. - */ -# include "arabic.c" |