mirror of
https://github.com/vim/vim.git
synced 2025-11-14 23:04:02 -05:00
patch 9.1.1840: Generating prototype files does not work on all platforms
Problem: Generating prototype files does not work on all platforms
Solution: Rework prototypes generation using python instead of cproto,
enable it in CI to test it for each PR (Hirohito Higashi).
closes: #18045
Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
ce5f9f45af
commit
e7c765fe59
@@ -14,12 +14,7 @@
|
||||
#define USING_FLOAT_STUFF
|
||||
#include "vim.h"
|
||||
|
||||
#if defined(FEAT_EVAL) || defined(PROTO)
|
||||
|
||||
// When not generating protos this is included in proto.h
|
||||
#ifdef PROTO
|
||||
# include "vim9.h"
|
||||
#endif
|
||||
#if defined(FEAT_EVAL)
|
||||
|
||||
/*
|
||||
* Get the index of the current instruction.
|
||||
@@ -2641,7 +2636,7 @@ compile_redir(char_u *line, exarg_T *eap, cctx_T *cctx)
|
||||
return compile_exec(line, eap, cctx);
|
||||
}
|
||||
|
||||
#if defined(FEAT_QUICKFIX) || defined(PROTO)
|
||||
#if defined(FEAT_QUICKFIX)
|
||||
char_u *
|
||||
compile_cexpr(char_u *line, exarg_T *eap, cctx_T *cctx)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user