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/globals.h | |
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/globals.h')
-rw-r--r-- | src/globals.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/globals.h b/src/globals.h index f6adf0381c..7f8142e322 100644 --- a/src/globals.h +++ b/src/globals.h @@ -1136,9 +1136,4 @@ EXTERN char *ignoredp; */ # include "farsi.h" -/* - * Optional Arabic support. Include it here, so EXTERN and INIT are defined. - */ -# include "arabic.h" - #endif /* NEOVIM_GLOBALS_H */ |