From c8882ca7e75e2f085ec2e0943d5afa09efc9c8ca Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Mon, 25 Oct 2021 22:29:02 +0200 Subject: refactor(api): move extmark API to its own file --- src/nvim/memory.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/memory.c') diff --git a/src/nvim/memory.c b/src/nvim/memory.c index 5e6c6a8189..5345580b93 100644 --- a/src/nvim/memory.c +++ b/src/nvim/memory.c @@ -8,7 +8,7 @@ #include #include -#include "nvim/api/vim.h" +#include "nvim/api/extmark.h" #include "nvim/context.h" #include "nvim/decoration.h" #include "nvim/eval.h" @@ -679,7 +679,7 @@ void free_all_mem(void) } eval_clear(); - api_vim_free_all_mem(); + api_extmark_free_all_mem(); ctx_free_all(); // Free all buffers. Reset 'autochdir' to avoid accessing things that -- cgit