# HG changeset patch # User Bram Moolenaar # Date 1644755403 -3600 # Node ID 63e7adbe72231200cedde1f4af3daef0a0d90f6e # Parent 68c539b0ec53ebdf115e76d5c108933558cb3a7c patch 8.2.4369: redundant #ifdef argument Commit: https://github.com/vim/vim/commit/f7fbeed0ac8e694a6865cab26b82caeea0870966 Author: ola.soder@axis.com Date: Sun Feb 13 12:24:21 2022 +0000 patch 8.2.4369: redundant #ifdef argument Problem: Redundant #ifdef argument. Solution: Remove unused MSWIN. (Ola S?der, closes https://github.com/vim/vim/issues/9758) diff --git a/src/feature.h b/src/feature.h --- a/src/feature.h +++ b/src/feature.h @@ -56,7 +56,7 @@ /* * For Unix, Mac and Win32 use +huge by default. These days CPUs are fast and * Memory is cheap. - * Use +big for older systems: Other MS-Windows and VMS. + * Use +big for older systems: VMS and Amiga. * Otherwise use +normal */ #if !defined(FEAT_TINY) && !defined(FEAT_SMALL) && !defined(FEAT_NORMAL) \ @@ -64,7 +64,7 @@ # if defined(UNIX) || defined(MSWIN) || defined(MACOS_X) # define FEAT_HUGE # else -# if defined(MSWIN) || defined(VMS) || defined(AMIGA) +# if defined(VMS) || defined(AMIGA) # define FEAT_BIG # else # define FEAT_NORMAL diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4369, +/**/ 4368, /**/ 4367,