aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/lua/stdlib.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-03-11 17:58:05 +0800
committerGitHub <noreply@github.com>2023-03-11 17:58:05 +0800
commit402c31a82d2961172c6eaf8014762f28c60bd93e (patch)
treeedab4d43228715ef759c0b0bd1125e666b44576e /src/nvim/lua/stdlib.c
parenta1edbd3564b40cc2a07963d0efaa85b8ab32ca16 (diff)
downloadrneovim-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.c2
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"