]> granicus.if.org Git - vim/commitdiff
updated for version 7.1-064 v7.1.064
authorBram Moolenaar <Bram@vim.org>
Sat, 11 Aug 2007 20:24:10 +0000 (20:24 +0000)
committerBram Moolenaar <Bram@vim.org>
Sat, 11 Aug 2007 20:24:10 +0000 (20:24 +0000)
src/os_unix.c
src/version.c

index 2d512b730f8077d3dc2497ee2d6c72fe5688551e..d0a1c521b0eba91c4dcf1c7d3c11d37aced611ef 100644 (file)
@@ -2499,7 +2499,13 @@ mch_getperm(name)
     if (stat((char *)name, &statb))
 #endif
        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;
+#endif
 }
 
 /*
index 4babbb816d60bd09df81f3a22d79e6cba0b96f91..6f0eb8d915c17efdbe64fe405600c21fb9c68fe2 100644 (file)
@@ -666,6 +666,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    64,
 /**/
     63,
 /**/