mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.4369: redundant #ifdef argument
Problem: Redundant #ifdef argument. Solution: Remove unused MSWIN. (Ola Söder, closes #9758)
This commit is contained in:
committed by
Bram Moolenaar
parent
e131496ebf
commit
f7fbeed0ac
@@ -56,7 +56,7 @@
|
|||||||
/*
|
/*
|
||||||
* For Unix, Mac and Win32 use +huge by default. These days CPUs are fast and
|
* For Unix, Mac and Win32 use +huge by default. These days CPUs are fast and
|
||||||
* Memory is cheap.
|
* Memory is cheap.
|
||||||
* Use +big for older systems: Other MS-Windows and VMS.
|
* Use +big for older systems: VMS and Amiga.
|
||||||
* Otherwise use +normal
|
* Otherwise use +normal
|
||||||
*/
|
*/
|
||||||
#if !defined(FEAT_TINY) && !defined(FEAT_SMALL) && !defined(FEAT_NORMAL) \
|
#if !defined(FEAT_TINY) && !defined(FEAT_SMALL) && !defined(FEAT_NORMAL) \
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
# if defined(UNIX) || defined(MSWIN) || defined(MACOS_X)
|
# if defined(UNIX) || defined(MSWIN) || defined(MACOS_X)
|
||||||
# define FEAT_HUGE
|
# define FEAT_HUGE
|
||||||
# else
|
# else
|
||||||
# if defined(MSWIN) || defined(VMS) || defined(AMIGA)
|
# if defined(VMS) || defined(AMIGA)
|
||||||
# define FEAT_BIG
|
# define FEAT_BIG
|
||||||
# else
|
# else
|
||||||
# define FEAT_NORMAL
|
# define FEAT_NORMAL
|
||||||
|
@@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
4369,
|
||||||
/**/
|
/**/
|
||||||
4368,
|
4368,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user