From: ola.soder@axis.com Date: Thu, 24 Jun 2021 19:43:31 +0000 (+0200) Subject: patch 8.2.3046: Amiga MorphOS: Term mode is set using DOS packets X-Git-Tag: v8.2.3046 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b420ac9d20d484ba0ebf3e328069251a63f96996;p=vim patch 8.2.3046: Amiga MorphOS: Term mode is set using DOS packets Problem: Amiga MorphOS: Term mode is set using DOS packets. Solution: Use the same way of setting term mdoe on all next gen Amiga-like systems. (Ola Söder, closes #8445) --- diff --git a/src/os_amiga.c b/src/os_amiga.c index e2326b947..f157c0bd2 100644 --- a/src/os_amiga.c +++ b/src/os_amiga.c @@ -982,7 +982,7 @@ mch_exit(int r) void mch_settmode(tmode_T tmode) { -#if defined(__AROS__) || defined(__amigaos4__) +#if defined(__AROS__) || defined(__amigaos4__) || defined(__MORPHOS__) if (!SetMode(raw_in, tmode == TMODE_RAW ? 1 : 0)) #else if (dos_packet(MP(raw_in), (long)ACTION_SCREEN_MODE, diff --git a/src/version.c b/src/version.c index d0e9da6fc..1ecb56771 100644 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3046, /**/ 3045, /**/