Patch 8.2.2047
Problem: Amiga: FEAT_ARP defined when it should not.
Solution: Adjust #ifdef. (Ola Söder, closes #7370)
Files: src/feature.h
*** ../vim-8.2.2046/src/feature.h 2020-08-11 21:58:12.581968226 +0200
--- src/feature.h 2020-11-25 15:43:50.831366319 +0100
***************
*** 1089,1099 ****
/*
* +ARP Amiga only. Use arp.library, DOS 2.0 is not
required.
*/
! #if !defined(NO_ARP) && !defined(__amigaos4__)
# define FEAT_ARP
#endif
-
/*
* +ole Win32 OLE automation: Use Makefile.ovc.
*/
--- 1089,1099 ----
/*
* +ARP Amiga only. Use arp.library, DOS 2.0 is not
required.
*/
! #if defined(AMIGA) && !defined(NO_ARP) && !defined(__amigaos4__) \
! && !defined(__MORPHOS__) || !defined(__AROS__)
# define FEAT_ARP
#endif
/*
* +ole Win32 OLE automation: Use Makefile.ovc.
*/
*** ../vim-8.2.2046/src/version.c 2020-11-25 14:15:08.833986402 +0100
--- src/version.c 2020-11-25 15:45:20.242995492 +0100
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 2047,
/**/
--
Nothing is impossible for the man who doesn't have to do it.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/202011251446.0APEk9192066452%40masaka.moolenaar.net.