diff options
author | Felipe Oliveira Carvalho <felipekde@gmail.com> | 2014-03-22 12:25:01 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-25 18:48:45 -0300 |
commit | 68bc6bce2923f049f84d919aea24600f18139a46 (patch) | |
tree | 6b1884e69d3ea0a350993adad0eb1175d769562d /src/main.h | |
parent | b7f953b9e4b739057fb1a143d06de8eb406f0596 (diff) | |
download | rneovim-68bc6bce2923f049f84d919aea24600f18139a46.tar.gz rneovim-68bc6bce2923f049f84d919aea24600f18139a46.tar.bz2 rneovim-68bc6bce2923f049f84d919aea24600f18139a46.zip |
Do not include farsi.c in main.c
- Change CMakeLists.txt to compile farsi.c normally
- Add const to global variables in farsi.h and define them in farsi.c (no need
to include farsi.h with DO_INIT defined in globals.h)
- Include farsi.h where necessary
- Include all necessary headers in farsi.c
- Move farsi function declarations from main.h to farsi.h
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/main.h b/src/main.h index e0659c9f87..286540b3cb 100644 --- a/src/main.h +++ b/src/main.h @@ -14,17 +14,5 @@ void time_msg(char *mesg, void *tv_start); void server_to_input_buf(char_u *str); char_u *eval_client_expr_to_string(char_u *expr); char_u *serverConvert(char_u *client_enc, char_u *data, char_u **tofree); -int toF_TyA(int c); -int fkmap(int c); -void conv_to_pvim(void); -void conv_to_pstd(void); -char_u *lrswap(char_u *ibuf); -char_u *lrFswap(char_u *cmdbuf, int len); -char_u *lrF_sub(char_u *ibuf); -int cmdl_fkmap(int c); -int F_isalpha(int c); -int F_isdigit(int c); -int F_ischar(int c); -void farsi_fkey(cmdarg_T *cap); /* vim: set ft=c : */ #endif /* NEOVIM_MAIN_H */ |