aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.c
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-06-23 11:42:29 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-06-24 13:02:24 -0300
commitbc0380038e0a4ff4f4bfaa939b0cef26c5e53582 (patch)
tree64356539713a1c21c0cf1906a924f0aac9c11b0f /src/nvim/eval.c
parentea7a389ec77c0031160ce860129101c603d8e0ec (diff)
downloadrneovim-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.c2
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 */