]> granicus.if.org Git - vim/commitdiff
updated for version 7.1-328 v7.1.328
authorBram Moolenaar <Bram@vim.org>
Sat, 21 Jun 2008 11:12:49 +0000 (11:12 +0000)
committerBram Moolenaar <Bram@vim.org>
Sat, 21 Jun 2008 11:12:49 +0000 (11:12 +0000)
src/os_unix.c
src/version.c

index 7bad7e9d41b2ea1e00b4c21446e5f5cfe819d7a2..4c3f39f2c77dd80eef39c872c80dfcff22cbc98f 100644 (file)
@@ -2278,6 +2278,10 @@ mch_FullName(fname, buf, len, force)
     char_u     olddir[MAXPATHL];
     char_u     *p;
     int                retval = OK;
+#ifdef __CYGWIN__
+    char_u     posix_fname[MAX_PATH];
+#endif
+
 
 #ifdef VMS
     fname = vms_fixfilename(fname);
@@ -2287,7 +2291,8 @@ mch_FullName(fname, buf, len, force)
     /*
      * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
      */
-    cygwin_conv_to_posix_path(fname, fname);
+    cygwin_conv_to_posix_path(fname, posix_fname);
+    fname = posix_fname;
 #endif
 
     /* expand it if forced or not an absolute path */
index 516b342c396706e18029234d1ab4e97a6891fb71..bd4a99f5c12099f315db2ee57f33acc3050fc7df 100644 (file)
@@ -666,6 +666,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    328,
 /**/
     327,
 /**/