diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-12-05 14:34:17 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2020-12-05 14:34:17 +0100 |
commit | b1ef6de6208354d4d1ef8f60e95abaec7e7257ed (patch) | |
tree | f23c1725567bb8440890099132abc9fdb11f096f /src/nvim/api/private/dispatch.c | |
parent | c348e816fc530f185d799270ad3c39bd0d6799a6 (diff) | |
download | rneovim-b1ef6de6208354d4d1ef8f60e95abaec7e7257ed.tar.gz rneovim-b1ef6de6208354d4d1ef8f60e95abaec7e7257ed.tar.bz2 rneovim-b1ef6de6208354d4d1ef8f60e95abaec7e7257ed.zip |
api: move deprecated functions to separate files
Most these are just calls to non-deprecated variants, and take up
unnecessary space and search hits in the other files.
Diffstat (limited to 'src/nvim/api/private/dispatch.c')
-rw-r--r-- | src/nvim/api/private/dispatch.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/api/private/dispatch.c b/src/nvim/api/private/dispatch.c index 2975df3c68..eae4581f42 100644 --- a/src/nvim/api/private/dispatch.c +++ b/src/nvim/api/private/dispatch.c @@ -19,6 +19,7 @@ #include "nvim/api/ui.h" #include "nvim/api/vim.h" #include "nvim/api/window.h" +#include "nvim/api/deprecated.h" static Map(String, MsgpackRpcRequestHandler) *methods = NULL; |