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.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/main.h')
-rw-r--r-- | src/main.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main.h b/src/main.h index c37965098d..e0659c9f87 100644 --- a/src/main.h +++ b/src/main.h @@ -26,7 +26,5 @@ int F_isalpha(int c); int F_isdigit(int c); int F_ischar(int c); void farsi_fkey(cmdarg_T *cap); -int arabic_shape(int c, int *ccp, int *c1p, int prev_c, int prev_c1, - int next_c); /* vim: set ft=c : */ #endif /* NEOVIM_MAIN_H */ |