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:
committed by
Christian Brabandt
parent
ce5f9f45af
commit
e7c765fe59
@@ -1487,7 +1487,7 @@ set_mouse_termcode(
|
||||
has_mouse_termcode |= HMT_NORMAL;
|
||||
}
|
||||
|
||||
#if defined(UNIX) || defined(VMS) || defined(PROTO)
|
||||
#if defined(UNIX) || defined(VMS)
|
||||
void
|
||||
del_mouse_termcode(
|
||||
int n) // KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE
|
||||
@@ -3224,7 +3224,7 @@ mouse_find_win(int *rowp, int *colp, mouse_find_T popup UNUSED)
|
||||
}
|
||||
|
||||
#if defined(NEED_VCOL2COL) || defined(FEAT_BEVAL) || defined(FEAT_PROP_POPUP) \
|
||||
|| defined(FEAT_EVAL) || defined(PROTO)
|
||||
|| defined(FEAT_EVAL)
|
||||
/*
|
||||
* Convert a virtual (screen) column to a character column.
|
||||
* The first column is zero.
|
||||
@@ -3254,7 +3254,7 @@ vcol2col(win_T *wp, linenr_T lnum, int vcol, colnr_T *coladdp)
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(FEAT_EVAL) || defined(PROTO)
|
||||
#if defined(FEAT_EVAL)
|
||||
/*
|
||||
* "getmousepos()" function.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user