mirror of
https://github.com/vim/vim.git
synced 2025-11-15 23:14:06 -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
@@ -28,8 +28,8 @@
|
||||
char *Version = VIM_VERSION_SHORT;
|
||||
static char *mediumVersion = VIM_VERSION_MEDIUM;
|
||||
|
||||
#if defined(HAVE_DATE_TIME) || defined(PROTO)
|
||||
# if (defined(VMS) && defined(VAXC)) || defined(PROTO)
|
||||
#if defined(HAVE_DATE_TIME)
|
||||
# if defined(VMS) && defined(VAXC)
|
||||
char longVersion[sizeof(VIM_VERSION_LONG_DATE) + sizeof(__DATE__)
|
||||
+ sizeof(__TIME__) + 3];
|
||||
|
||||
@@ -729,6 +729,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1840,
|
||||
/**/
|
||||
1839,
|
||||
/**/
|
||||
@@ -4431,7 +4433,7 @@ highest_patch(void)
|
||||
return included_patches[0];
|
||||
}
|
||||
|
||||
#if defined(FEAT_EVAL) || defined(PROTO)
|
||||
#if defined(FEAT_EVAL)
|
||||
/*
|
||||
* Return TRUE if patch "n" has been included.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user