summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-01-19 23:30:41 +0100
committerBram Moolenaar <Bram@vim.org>2010-01-19 23:30:41 +0100
commitfc307fa1a6d2a4c33cd16e09561f601c801565a9 (patch)
tree1509bde1f3351331288df65df46a8f02919b7826
parentd836bb90ab25a8f78473460ca91d6c13ae7ad2bc (diff)
downloadvim-git-7.2.343.tar.gz
updated for version 7.2.343v7.2.343
Problem: Can't compile on Win32. Solution: Insert the missing bar.
-rw-r--r--src/ex_cmds2.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c
index d52b20331..bcdf28723 100644
--- a/src/ex_cmds2.c
+++ b/src/ex_cmds2.c
@@ -2816,7 +2816,7 @@ fopen_noinh_readbin(filename)
{
int fd_tmp = mch_open(filename, O_RDONLY
# ifdef WIN32
- O_BINARY | O_NOINHERIT
+ | O_BINARY | O_NOINHERIT
# endif
, 0);
diff --git a/src/version.c b/src/version.c
index ab5046501..41d099da5 100644
--- a/src/version.c
+++ b/src/version.c
@@ -682,6 +682,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 343,
+/**/
342,
/**/
341,