summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2007-09-14 17:56:59 +0000
committervimboss <devnull@localhost>2007-09-14 17:56:59 +0000
commit97c3b1caf55a4347b1d26894ca154ede3c4a5ed9 (patch)
tree62bb190340d65f607d8d033542f88112289c9955
parent5e29eeb7180645b85d186173c76303c9cd581a68 (diff)
downloadvim-97c3b1caf55a4347b1d26894ca154ede3c4a5ed9.tar.gz
updated for version 7.1-108v7.1.108v7-1-108
-rw-r--r--src/if_cscope.c15
-rw-r--r--src/version.c2
2 files changed, 15 insertions, 2 deletions
diff --git a/src/if_cscope.c b/src/if_cscope.c
index 151dc91e..52aa5340 100644
--- a/src/if_cscope.c
+++ b/src/if_cscope.c
@@ -726,6 +726,15 @@ cs_create_connection(i)
HANDLE stdin_rd, stdout_rd;
HANDLE stdout_wr, stdin_wr;
BOOL created;
+# ifdef __BORLANDC__
+# define OPEN_OH_ARGTYPE long
+# else
+# if (_MSC_VER >= 1300)
+# define OPEN_OH_ARGTYPE intptr_t
+# else
+# define OPEN_OH_ARGTYPE long
+# endif
+# endif
#endif
#if defined(UNIX)
@@ -909,10 +918,12 @@ err_closing:
CloseHandle(pi.hThread);
/* TODO - tidy up after failure to create files on pipe handles. */
- if (((fd = _open_osfhandle((intptr_t)stdin_wr, _O_TEXT|_O_APPEND)) < 0)
+ if (((fd = _open_osfhandle((OPEN_OH_ARGTYPE)stdin_wr,
+ _O_TEXT|_O_APPEND)) < 0)
|| ((csinfo[i].to_fp = _fdopen(fd, "w")) == NULL))
PERROR(_("cs_create_connection: fdopen for to_fp failed"));
- if (((fd = _open_osfhandle((intptr_t)stdout_rd, _O_TEXT|_O_RDONLY)) < 0)
+ if (((fd = _open_osfhandle((OPEN_OH_ARGTYPE)stdout_rd,
+ _O_TEXT|_O_RDONLY)) < 0)
|| ((csinfo[i].fr_fp = _fdopen(fd, "r")) == NULL))
PERROR(_("cs_create_connection: fdopen for fr_fp failed"));
diff --git a/src/version.c b/src/version.c
index 097284a9..04ca162d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 108,
+/**/
107,
/**/
106,