# HG changeset patch # User Bram Moolenaar # Date 1572119103 -7200 # Node ID 7f16792d15f7978b930bb8dbbcc825e6b6efd165 # Parent 14da8a19e87a625e2c639fcdb5a4e614c5b64542 patch 8.1.2224: cannot build Amiga version Commit: https://github.com/vim/vim/commit/dfded98f87601b11271ee88392c821ceb6390eda Author: Bram Moolenaar Date: Sat Oct 26 21:33:19 2019 +0200 patch 8.1.2224: cannot build Amiga version Problem: Cannot build Amiga version. Solution: Add dummy mch_setmouse(). (Ola S?der, closes https://github.com/vim/vim/issues/5126) diff --git a/src/os_amiga.c b/src/os_amiga.c --- a/src/os_amiga.c +++ b/src/os_amiga.c @@ -658,6 +658,12 @@ mch_can_restore_icon(void) } #endif + void +mch_setmouse(int on UNUSED) +{ + // TODO: implement +} + /* * Insert user name in s[len]. */ diff --git a/src/proto/os_amiga.pro b/src/proto/os_amiga.pro --- a/src/proto/os_amiga.pro +++ b/src/proto/os_amiga.pro @@ -15,6 +15,7 @@ void mch_settitle(char_u *title, char_u void mch_restore_title(int which); int mch_can_restore_title(void); int mch_can_restore_icon(void); +void mch_setmouse(int on); int mch_get_user_name(char_u *s, int len); void mch_get_host_name(char_u *s, int len); long mch_get_pid(void); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2224, +/**/ 2223, /**/ 2222,