0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.2054: Amiga: FEAT_ARP defined when it should not

Problem:    Amiga: FEAT_ARP defined when it should not.
Solution:   Adjust "||" to "&&" in #ifdef. (Ola Söder, closes #7375)
This commit is contained in:
Bram Moolenaar
2020-11-25 21:55:45 +01:00
parent c2ca935d26
commit d49a35a1c3
2 changed files with 3 additions and 1 deletions

View File

@@ -1090,7 +1090,7 @@
* +ARP Amiga only. Use arp.library, DOS 2.0 is not required.
*/
#if defined(AMIGA) && !defined(NO_ARP) && !defined(__amigaos4__) \
&& !defined(__MORPHOS__) || !defined(__AROS__)
&& !defined(__MORPHOS__) && !defined(__AROS__)
# define FEAT_ARP
#endif

View File

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