To: vim_dev@googlegroups.com Subject: Patch 8.2.2047 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ 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 -- Bram@Moolenaar.net -- 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 ///