diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-10-22 07:30:32 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-10-22 07:30:32 -0300 |
commit | 5cd9b6474287650790e97187058c81b176fbc7c9 (patch) | |
tree | 57a419ce9104adf84bd1152a01f9c1f75f4bef85 /src/nvim/os_unix.c | |
parent | 6e268cd0d40a3652a68b486bdbb421d39295ab48 (diff) | |
parent | f7fab4af863839a064a941a555b237b6eb789870 (diff) | |
download | rneovim-5cd9b6474287650790e97187058c81b176fbc7c9.tar.gz rneovim-5cd9b6474287650790e97187058c81b176fbc7c9.tar.bz2 rneovim-5cd9b6474287650790e97187058c81b176fbc7c9.zip |
Merge PR #1316 'Refactor event deferral'
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r-- | src/nvim/os_unix.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index 52f57f8262..0ad15bc433 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -54,8 +54,8 @@ #include "nvim/os/shell.h" #include "nvim/os/signal.h" #include "nvim/os/job.h" -#include "nvim/os/msgpack_rpc.h" -#include "nvim/os/msgpack_rpc_helpers.h" +#include "nvim/msgpack_rpc/helpers.h" +#include "nvim/msgpack_rpc/defs.h" #if defined(HAVE_SYS_IOCTL_H) # include <sys/ioctl.h> @@ -166,8 +166,6 @@ void mch_init(void) mac_conv_init(); #endif - msgpack_rpc_init(); - msgpack_rpc_helpers_init(); event_init(); } |