diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-03-11 17:58:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-11 17:58:05 +0800 |
commit | 402c31a82d2961172c6eaf8014762f28c60bd93e (patch) | |
tree | edab4d43228715ef759c0b0bd1125e666b44576e /src/nvim/lua/stdlib.c | |
parent | a1edbd3564b40cc2a07963d0efaa85b8ab32ca16 (diff) | |
download | rneovim-402c31a82d2961172c6eaf8014762f28c60bd93e.tar.gz rneovim-402c31a82d2961172c6eaf8014762f28c60bd93e.tar.bz2 rneovim-402c31a82d2961172c6eaf8014762f28c60bd93e.zip |
refactor: move ga_loaded to runtime.c (#22626)
Diffstat (limited to 'src/nvim/lua/stdlib.c')
-rw-r--r-- | src/nvim/lua/stdlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/lua/stdlib.c b/src/nvim/lua/stdlib.c index b6e56c35d6..852e10c8d8 100644 --- a/src/nvim/lua/stdlib.c +++ b/src/nvim/lua/stdlib.c @@ -22,7 +22,6 @@ #include "nvim/api/private/helpers.h" #include "nvim/ascii.h" #include "nvim/buffer_defs.h" -#include "nvim/eval.h" #include "nvim/eval/typval.h" #include "nvim/eval/typval_defs.h" #include "nvim/ex_eval.h" @@ -38,6 +37,7 @@ #include "nvim/memory.h" #include "nvim/pos.h" #include "nvim/regexp.h" +#include "nvim/runtime.h" #include "nvim/types.h" #include "nvim/vim.h" |