]> granicus.if.org Git - vim/commitdiff
updated for version 7.2-209 v7.2.209
authorBram Moolenaar <Bram@vim.org>
Tue, 16 Jun 2009 16:29:10 +0000 (16:29 +0000)
committerBram Moolenaar <Bram@vim.org>
Tue, 16 Jun 2009 16:29:10 +0000 (16:29 +0000)
src/version.c
src/xxd/xxd.c

index 044b2fdd4d45e69c29ef84def2e95de60d883245..22d18de4a9c67c52548f76a0ead1c6f76a745728 100644 (file)
@@ -676,6 +676,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    209,
 /**/
     208,
 /**/
index b9e42f6a7dd871e293bd99b94ef58278cdb622e7..c558426ad754b20878c6252b3b39a144ab1e8315 100644 (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")