Skip to content

Commit

Permalink
patch 8.2.2054: Amiga: FEAT_ARP defined when it should not
Browse files Browse the repository at this point in the history
Problem:    Amiga: FEAT_ARP defined when it should not.
Solution:   Adjust "||" to "&&" in #ifdef. (Ola Söder, closes vim#7375)
  • Loading branch information
brammool committed Nov 25, 2020
1 parent c2ca935 commit d49a35a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/feature.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -750,6 +750,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
2054,
/**/
2053,
/**/
Expand Down

0 comments on commit d49a35a

Please sign in to comment.