diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-06-23 11:42:29 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-06-24 13:02:24 -0300 |
commit | bc0380038e0a4ff4f4bfaa939b0cef26c5e53582 (patch) | |
tree | 64356539713a1c21c0cf1906a924f0aac9c11b0f /src/nvim/eval.c | |
parent | ea7a389ec77c0031160ce860129101c603d8e0ec (diff) | |
download | rneovim-bc0380038e0a4ff4f4bfaa939b0cef26c5e53582.tar.gz rneovim-bc0380038e0a4ff4f4bfaa939b0cef26c5e53582.tar.bz2 rneovim-bc0380038e0a4ff4f4bfaa939b0cef26c5e53582.zip |
channel/msgpack_rpc: Refactor to better split functions across modules
Move validation/conversion functions and to msgpack_rpc_helpers to separate
those from the functions that are used from the channel module
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 4c39950344..adc411afc7 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -71,7 +71,7 @@ #include "nvim/os/time.h" #include "nvim/os/channel.h" #include "nvim/api/private/helpers.h" -#include "nvim/os/msgpack_rpc.h" +#include "nvim/os/msgpack_rpc_helpers.h" #define DICT_MAXNEST 100 /* maximum nesting of lists and dicts */ |