0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

patch 8.1.2224: cannot build Amiga version

Problem:    Cannot build Amiga version.
Solution:   Add dummy mch_setmouse(). (Ola Söder, closes #5126)
This commit is contained in:
Bram Moolenaar 2019-10-26 21:33:19 +02:00
parent cb86893114
commit dfded98f87
3 changed files with 9 additions and 0 deletions

View File

@ -658,6 +658,12 @@ mch_can_restore_icon(void)
} }
#endif #endif
void
mch_setmouse(int on UNUSED)
{
// TODO: implement
}
/* /*
* Insert user name in s[len]. * Insert user name in s[len].
*/ */

View File

@ -15,6 +15,7 @@ void mch_settitle(char_u *title, char_u *icon);
void mch_restore_title(int which); void mch_restore_title(int which);
int mch_can_restore_title(void); int mch_can_restore_title(void);
int mch_can_restore_icon(void); int mch_can_restore_icon(void);
void mch_setmouse(int on);
int mch_get_user_name(char_u *s, int len); int mch_get_user_name(char_u *s, int len);
void mch_get_host_name(char_u *s, int len); void mch_get_host_name(char_u *s, int len);
long mch_get_pid(void); long mch_get_pid(void);

View File

@ -741,6 +741,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
2224,
/**/ /**/
2223, 2223,
/**/ /**/