comparison src/feature.h @ 27686:63e7adbe7223 v8.2.4369

patch 8.2.4369: redundant #ifdef argument Commit: https://github.com/vim/vim/commit/f7fbeed0ac8e694a6865cab26b82caeea0870966 Author: ola.soder@axis.com <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)
author Bram Moolenaar <Bram@vim.org>
date Sun, 13 Feb 2022 13:30:03 +0100
parents fb4c30606b4a
children f1799ba16729
comparison
equal deleted inserted replaced
27685:68c539b0ec53 27686:63e7adbe7223
54 #endif 54 #endif
55 55
56 /* 56 /*
57 * For Unix, Mac and Win32 use +huge by default. These days CPUs are fast and 57 * For Unix, Mac and Win32 use +huge by default. These days CPUs are fast and
58 * Memory is cheap. 58 * Memory is cheap.
59 * Use +big for older systems: Other MS-Windows and VMS. 59 * Use +big for older systems: VMS and Amiga.
60 * Otherwise use +normal 60 * Otherwise use +normal
61 */ 61 */
62 #if !defined(FEAT_TINY) && !defined(FEAT_SMALL) && !defined(FEAT_NORMAL) \ 62 #if !defined(FEAT_TINY) && !defined(FEAT_SMALL) && !defined(FEAT_NORMAL) \
63 && !defined(FEAT_BIG) && !defined(FEAT_HUGE) 63 && !defined(FEAT_BIG) && !defined(FEAT_HUGE)
64 # if defined(UNIX) || defined(MSWIN) || defined(MACOS_X) 64 # if defined(UNIX) || defined(MSWIN) || defined(MACOS_X)
65 # define FEAT_HUGE 65 # define FEAT_HUGE
66 # else 66 # else
67 # if defined(MSWIN) || defined(VMS) || defined(AMIGA) 67 # if defined(VMS) || defined(AMIGA)
68 # define FEAT_BIG 68 # define FEAT_BIG
69 # else 69 # else
70 # define FEAT_NORMAL 70 # define FEAT_NORMAL
71 # endif 71 # endif
72 # endif 72 # endif