forked from aniani/vim
patch 8.1.0987: unnecessary condition in #ifdef
Problem: Unnecessary condition in #ifdef. Solution: Remove using CYGWIN32. (Ken Takata)
This commit is contained in:
parent
ef8c956172
commit
6ef8f9eacd
@ -33,7 +33,7 @@
|
|||||||
# include <stdlib.h>
|
# include <stdlib.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__CYGWIN__) || defined(__CYGWIN32__)
|
#ifdef __CYGWIN__
|
||||||
# define WIN32UNIX /* Compiling for Win32 using Unix files. */
|
# define WIN32UNIX /* Compiling for Win32 using Unix files. */
|
||||||
# define BINARY_FILE_IO
|
# define BINARY_FILE_IO
|
||||||
|
|
||||||
|
@ -779,6 +779,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 */
|
||||||
|
/**/
|
||||||
|
987,
|
||||||
/**/
|
/**/
|
||||||
986,
|
986,
|
||||||
/**/
|
/**/
|
||||||
|
@ -71,7 +71,7 @@
|
|||||||
# define _CRT_SECURE_NO_DEPRECATE
|
# define _CRT_SECURE_NO_DEPRECATE
|
||||||
# define _CRT_NONSTDC_NO_DEPRECATE
|
# define _CRT_NONSTDC_NO_DEPRECATE
|
||||||
#endif
|
#endif
|
||||||
#if !defined(CYGWIN) && (defined(CYGWIN32) || defined(__CYGWIN__) || defined(__CYGWIN32__))
|
#if !defined(CYGWIN) && defined(__CYGWIN__)
|
||||||
# define CYGWIN
|
# define CYGWIN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user