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:
@@ -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
|
||||
|
||||
|
@@ -750,6 +750,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
2054,
|
||||
/**/
|
||||
2053,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user