From 38dcfb60627cbdfa2eaf5d0d991c872c85868f22 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Mon, 8 Sep 2014 16:03:37 -0300 Subject: api/msgpack-rpc: Use EXT type to serialize Buffer/Window/Tabpage --- src/nvim/os_unix.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/nvim/os_unix.c') diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index 3fa8b803b2..6c79fbd479 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -55,6 +55,7 @@ #include "nvim/os/signal.h" #include "nvim/os/job.h" #include "nvim/os/msgpack_rpc.h" +#include "nvim/os/msgpack_rpc_helpers.h" #if defined(HAVE_SYS_IOCTL_H) # include @@ -166,6 +167,7 @@ void mch_init(void) #endif msgpack_rpc_init(); + msgpack_rpc_helpers_init(); event_init(); } -- cgit