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
@@ -19,7 +19,7 @@
|
||||
#include "vim.h"
|
||||
#include "xdiff/xdiff.h"
|
||||
|
||||
#if defined(FEAT_DIFF) || defined(PROTO)
|
||||
#if defined(FEAT_DIFF)
|
||||
|
||||
static int diff_busy = FALSE; // using diff structs, don't change them
|
||||
static int diff_need_update = FALSE; // ex_diffupdate needs to be called
|
||||
@@ -3822,7 +3822,7 @@ diff_find_change(
|
||||
return added;
|
||||
}
|
||||
|
||||
#if defined(FEAT_FOLDING) || defined(PROTO)
|
||||
#if defined(FEAT_FOLDING)
|
||||
/*
|
||||
* Return TRUE if line "lnum" is not close to a diff block, this line should
|
||||
* be in a fold.
|
||||
@@ -4668,7 +4668,7 @@ xdiff_out_unified(
|
||||
|
||||
#endif // FEAT_DIFF
|
||||
|
||||
#if defined(FEAT_EVAL) || defined(PROTO)
|
||||
#if defined(FEAT_EVAL)
|
||||
|
||||
/*
|
||||
* "diff_filler()" function
|
||||
|
||||
Reference in New Issue
Block a user