diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-10-26 10:45:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-26 10:45:11 +0200 |
commit | f75d00456d6a04e403ec8971922a204acfab8c85 (patch) | |
tree | 19317872a166dc5bf3a0f50490281d8b4a2fc1b4 /src/nvim/memory.c | |
parent | 09e96fe6096f07365eb65b51bb7f2fd0f1b043b0 (diff) | |
parent | c8882ca7e75e2f085ec2e0943d5afa09efc9c8ca (diff) | |
download | rneovim-f75d00456d6a04e403ec8971922a204acfab8c85.tar.gz rneovim-f75d00456d6a04e403ec8971922a204acfab8c85.tar.bz2 rneovim-f75d00456d6a04e403ec8971922a204acfab8c85.zip |
Merge pull request #16147 from bfredl/neomark
refactor(api): move extmark API to its own file
Diffstat (limited to 'src/nvim/memory.c')
-rw-r--r-- | src/nvim/memory.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 <stdbool.h> #include <string.h> -#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 |