diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-07-22 22:05:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-22 22:05:02 +0800 |
commit | a7b9920930f032419439f52ca529abcffc0d15b1 (patch) | |
tree | 91aca167be3718f5f1432944e33143bc9c21a15c /src/nvim/lua/executor.c | |
parent | ac690f457e0199121a08f802c27b8befbcf800c1 (diff) | |
download | rneovim-a7b9920930f032419439f52ca529abcffc0d15b1.tar.gz rneovim-a7b9920930f032419439f52ca529abcffc0d15b1.tar.bz2 rneovim-a7b9920930f032419439f52ca529abcffc0d15b1.zip |
refactor: move FunPtr to types.h (#19466)
This type itself is not eval-specific. Moving it to types.h can avoid
including eval/funcs.h in many headers, and types.h is already included
by many headers.
Diffstat (limited to 'src/nvim/lua/executor.c')
-rw-r--r-- | src/nvim/lua/executor.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/lua/executor.c b/src/nvim/lua/executor.c index fcbf36c711..824b9a8ec0 100644 --- a/src/nvim/lua/executor.c +++ b/src/nvim/lua/executor.c @@ -15,6 +15,7 @@ #include "nvim/buffer_defs.h" #include "nvim/change.h" #include "nvim/cursor.h" +#include "nvim/eval/funcs.h" #include "nvim/eval/typval.h" #include "nvim/eval/userfunc.h" #include "nvim/event/loop.h" |