diff options
author | ola.soder@axis.com <ola.soder@axis.com> | 2022-02-13 12:24:21 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-02-13 12:24:21 +0000 |
commit | f7fbeed0ac8e694a6865cab26b82caeea0870966 (patch) | |
tree | 071eba35f8f65a9119551ce47d451af76e8b3b0a /src/feature.h | |
parent | e131496ebf714f5f12f9903d9aa910bcd8184460 (diff) | |
download | vim-git-f7fbeed0ac8e694a6865cab26b82caeea0870966.tar.gz |
patch 8.2.4369: redundant #ifdef argumentv8.2.4369
Problem: Redundant #ifdef argument.
Solution: Remove unused MSWIN. (Ola Söder, closes #9758)
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/feature.h b/src/feature.h index c7cba07d4..65185a217 100644 --- 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 |