0
0
mirror of https://github.com/vim/vim.git synced 2025-11-16 23:24:03 -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:
Hirohito Higashi
2025-10-08 18:31:13 +00:00
committed by Christian Brabandt
parent ce5f9f45af
commit e7c765fe59
160 changed files with 1751 additions and 1551 deletions

View File

@@ -1385,7 +1385,7 @@ pum_enough_matches(void)
return (i >= 2);
}
#if defined(FEAT_EVAL) || defined(PROTO)
#if defined(FEAT_EVAL)
/*
* Allocate Dict for the completed item.
* { word, abbr, menu, kind, info }
@@ -3684,7 +3684,7 @@ theend:
}
#endif // FEAT_COMPL_FUNC
#if defined(FEAT_COMPL_FUNC) || defined(FEAT_EVAL) || defined(PROTO)
#if defined(FEAT_COMPL_FUNC) || defined(FEAT_EVAL)
static inline int
get_user_highlight_attr(char_u *hlname)
@@ -7526,7 +7526,7 @@ quote_meta(char_u *dest, char_u *src, int len)
return m;
}
#if defined(EXITFREE) || defined(PROTO)
#if defined(EXITFREE)
void
free_insexpand_stuff(void)
{