1
0
forked from aniani/vim

updated for version 7.2-209

This commit is contained in:
Bram Moolenaar
2009-06-16 16:29:10 +00:00
parent 2a7b9ee0a7
commit dc40a2b5f5
2 changed files with 7 additions and 4 deletions

View File

@@ -676,6 +676,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
209,
/**/
208,
/**/

View File

@@ -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")