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/map.h | |
| 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/map.h')
| -rw-r--r-- | src/nvim/map.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/map.h b/src/nvim/map.h index 616516c3e1..5ade6dcf15 100644 --- a/src/nvim/map.h +++ b/src/nvim/map.h @@ -5,7 +5,7 @@ #include "nvim/map_defs.h" #include "nvim/api/private/defs.h" -#include "nvim/os/msgpack_rpc.h" +#include "nvim/msgpack_rpc/defs.h" #define MAP_DECLS(T, U) \ KHASH_DECLARE(T##_##U##_map, T, U) \ @@ -25,7 +25,7 @@ MAP_DECLS(cstr_t, uint64_t) MAP_DECLS(cstr_t, ptr_t) MAP_DECLS(ptr_t, ptr_t) MAP_DECLS(uint64_t, ptr_t) -MAP_DECLS(String, rpc_method_handler_fn) +MAP_DECLS(String, MsgpackRpcRequestHandler) #define map_new(T, U) map_##T##_##U##_new #define map_free(T, U) map_##T##_##U##_free |