0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.1-064

This commit is contained in:
Bram Moolenaar
2007-08-11 20:24:10 +00:00
parent 52d36c8bb7
commit 708f62c380
2 changed files with 8 additions and 0 deletions

View File

@@ -2499,7 +2499,13 @@ mch_getperm(name)
if (stat((char *)name, &statb)) if (stat((char *)name, &statb))
#endif #endif
return -1; return -1;
#ifdef __INTERIX
/* The top bit makes the value negative, which means the file doesn't
* exist. Remove the bit, we don't use it. */
return statb.st_mode & ~S_ADDACE;
#else
return statb.st_mode; return statb.st_mode;
#endif
} }
/* /*

View File

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