Luca Masini wrote:

<snip>
It is late here....
I will look tomorrow at the mch_FullName() in os_unix.c
The patch moved in mch_FullName() in os_unix.c

diff --recursive --unified vim70/src/os_unix.c vim70-patched/src/os_unix.c
--- vim70/src/os_unix.c	2006-05-01 10:13:15.000000000 +0200
+++ vim70-patched/src/os_unix.c	2007-04-16 22:57:06.980184000 +0200
@@ -2350,6 +2350,10 @@
     if (STRCMP(fname, ".") != 0)
 	STRCAT(buf, fname);
 
+#if defined(__CYGWIN__)
+    cygwin_conv_to_posix_path( buf, buf );
+#endif
+    
     return OK;
 }
 

Reply via email to