diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-12-20 15:04:29 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-20 15:04:29 +0000 |
commit | dc7c366f3aae65ee691010b08f37acfb26e0742b (patch) | |
tree | 90d12bd3030048100a9c5084474aef484f6fc58f /src/proto.h | |
parent | a99fb23842f055c511bfe1b62de7bbd14d5a99c0 (diff) | |
download | vim-git-dc7c366f3aae65ee691010b08f37acfb26e0742b.tar.gz |
patch 8.2.3860: Vim9: codecov struggles with the file sizev8.2.3860
Problem: Vim9: codecov struggles with the file size.
Solution: Split vim9compile.c into four files.
Diffstat (limited to 'src/proto.h')
-rw-r--r-- | src/proto.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/proto.h b/src/proto.h index 6c26aee38..d31629e0e 100644 --- a/src/proto.h +++ b/src/proto.h @@ -212,8 +212,13 @@ void mbyte_im_set_active(int active_arg); # include "version.pro" # include "vim9script.pro" # ifdef FEAT_EVAL +// include vim9.h here, the types defined there are used by function arguments. +# include "vim9.h" +# include "vim9cmds.pro" # include "vim9compile.pro" # include "vim9execute.pro" +# include "vim9expr.pro" +# include "vim9instr.pro" # include "vim9type.pro" # endif # include "window.pro" |