diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-29 23:10:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-29 23:10:21 +0800 |
commit | 86cc791debba09c8ed1aa0d863be844108866a38 (patch) | |
tree | 7231cc3940e88ee6c6f963f641c99d23422ffc90 /src/nvim/state.c | |
parent | 18c1fd8e9d759da6806747910320dce6bea2ab42 (diff) | |
download | rneovim-86cc791debba09c8ed1aa0d863be844108866a38.tar.gz rneovim-86cc791debba09c8ed1aa0d863be844108866a38.tar.bz2 rneovim-86cc791debba09c8ed1aa0d863be844108866a38.zip |
refactor: move function macros out of vim_defs.h (#26300)
Diffstat (limited to 'src/nvim/state.c')
-rw-r--r-- | src/nvim/state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/state.c b/src/nvim/state.c index 91258a5c8b..900eac0826 100644 --- a/src/nvim/state.c +++ b/src/nvim/state.c @@ -16,6 +16,7 @@ #include "nvim/log.h" #include "nvim/macros_defs.h" #include "nvim/main.h" +#include "nvim/memory.h" #include "nvim/option.h" #include "nvim/option_vars.h" #include "nvim/os/input.h" @@ -23,7 +24,6 @@ #include "nvim/strings.h" #include "nvim/types_defs.h" #include "nvim/ui.h" -#include "nvim/vim_defs.h" #ifdef INCLUDE_GENERATED_DECLARATIONS # include "state.c.generated.h" // IWYU pragma: export |