Skip to content

Commit dfded98

Browse files
committed
patch 8.1.2224: cannot build Amiga version
Problem: Cannot build Amiga version. Solution: Add dummy mch_setmouse(). (Ola Söder, closes #5126)
1 parent cb86893 commit dfded98

3 files changed

Lines changed: 9 additions & 0 deletions

File tree

src/os_amiga.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -658,6 +658,12 @@ mch_can_restore_icon(void)
658658
}
659659
#endif
660660

661+
void
662+
mch_setmouse(int on UNUSED)
663+
{
664+
// TODO: implement
665+
}
666+
661667
/*
662668
* Insert user name in s[len].
663669
*/

src/proto/os_amiga.pro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ void mch_settitle(char_u *title, char_u *icon);
1515
void mch_restore_title(int which);
1616
int mch_can_restore_title(void);
1717
int mch_can_restore_icon(void);
18+
void mch_setmouse(int on);
1819
int mch_get_user_name(char_u *s, int len);
1920
void mch_get_host_name(char_u *s, int len);
2021
long mch_get_pid(void);

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,8 @@ static char *(features[]) =
741741

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
2224,
744746
/**/
745747
2223,
746748
/**/

0 commit comments

Comments
 (0)