From b1ef6de6208354d4d1ef8f60e95abaec7e7257ed Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Sat, 5 Dec 2020 14:34:17 +0100 Subject: 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. --- src/nvim/api/private/dispatch.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/api/private') 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; -- cgit