summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-10-26 21:33:19 +0200
committerBram Moolenaar <Bram@vim.org>2019-10-26 21:33:19 +0200
commitdfded98f87601b11271ee88392c821ceb6390eda (patch)
tree19b6c7f5ecf7c6ba70dda1b1726a21c119e081fa
parentcb86893114ce33dc9c7bd4ff992b05c12406b35d (diff)
patch 8.1.2224: cannot build Amiga versionv8.1.2224
Problem: Cannot build Amiga version. Solution: Add dummy mch_setmouse(). (Ola Söder, closes #5126)
-rw-r--r--src/os_amiga.c6
-rw-r--r--src/proto/os_amiga.pro1
-rw-r--r--src/version.c2
3 files changed, 9 insertions, 0 deletions
diff --git a/src/os_amiga.c b/src/os_amiga.c
index aff24c5674..8627cb60af 100644
--- 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
index b781680a8c..7aaf1719fe 100644
--- a/src/proto/os_amiga.pro
+++ b/src/proto/os_amiga.pro
@@ -15,6 +15,7 @@ void mch_settitle(char_u *title, char_u *icon);
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
index b0fdab2f38..62a48880d7 100644
--- 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,