mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.2-209
This commit is contained in:
@@ -676,6 +676,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
209,
|
||||
/**/
|
||||
208,
|
||||
/**/
|
||||
|
@@ -64,6 +64,9 @@
|
||||
# define _CRT_SECURE_NO_DEPRECATE
|
||||
# define _CRT_NONSTDC_NO_DEPRECATE
|
||||
#endif
|
||||
#if !defined(CYGWIN) && (defined(CYGWIN32) || defined(__CYGWIN__) || defined(__CYGWIN32__))
|
||||
# define CYGWIN
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#ifdef VAXC
|
||||
@@ -77,7 +80,8 @@
|
||||
#if !defined(OS2) && defined(__EMX__)
|
||||
# define OS2
|
||||
#endif
|
||||
#if defined(MSDOS) || defined(WIN32) || defined(OS2) || defined(__BORLANDC__)
|
||||
#if defined(MSDOS) || defined(WIN32) || defined(OS2) || defined(__BORLANDC__) \
|
||||
|| defined(CYGWIN)
|
||||
# include <io.h> /* for setmode() */
|
||||
#else
|
||||
# ifdef UNIX
|
||||
@@ -150,9 +154,6 @@ char osver[] = "";
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#if !defined(CYGWIN) && (defined(CYGWIN32) || defined(__CYGWIN__) || defined(__CYGWIN32__))
|
||||
# define CYGWIN
|
||||
#endif
|
||||
#if defined(MSDOS) || defined(WIN32) || defined(OS2)
|
||||
# define BIN_READ(yes) ((yes) ? "rb" : "rt")
|
||||
# define BIN_WRITE(yes) ((yes) ? "wb" : "wt")
|
||||
|
Reference in New Issue
Block a user