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

@@ -3742,7 +3742,7 @@ gui_mch_create_scrollbar(
}
}
#if defined(FEAT_WINDOWS) || defined(FEAT_GUI_HAIKU) || defined(PROTO)
#if defined(FEAT_WINDOWS) || defined(FEAT_GUI_HAIKU)
void
gui_mch_destroy_scrollbar(
scrollbar_T *sb)
@@ -4225,7 +4225,7 @@ gui_mch_iconify()
}
}
#if defined(FEAT_EVAL) || defined(PROTO)
#if defined(FEAT_EVAL)
/*
* Bring the Vim window to the foreground.
*/
@@ -4476,7 +4476,7 @@ gui_mch_insert_lines(
gui.vimTextArea->mchInsertLines(row, num_lines);
}
#if defined(FEAT_MENU) || defined(PROTO)
#if defined(FEAT_MENU)
/*
* Menu stuff.
*/
@@ -5024,7 +5024,7 @@ gui_mch_set_toolbar_pos(int x, int y, int w, int h)
}
}
#if defined(FEAT_GUI_TABLINE) || defined(PROTO)
#if defined(FEAT_GUI_TABLINE)
/*
* Show or hide the tabline.