• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revisionfc2ee817dc9861774c31bbe768cddcaca4690e4e (tree)
Time2008-06-21 20:12:49
Authorvimboss
Commitervimboss

Log Message

updated for version 7.1-328

Change Summary

Incremental Difference

diff -r 371201c6b4c1 -r fc2ee817dc98 src/os_unix.c
--- a/src/os_unix.c Fri Jun 20 19:29:35 2008 +0000
+++ b/src/os_unix.c Sat Jun 21 11:12:49 2008 +0000
@@ -2278,6 +2278,10 @@
22782278 char_u olddir[MAXPATHL];
22792279 char_u *p;
22802280 int retval = OK;
2281+#ifdef __CYGWIN__
2282+ char_u posix_fname[MAX_PATH];
2283+#endif
2284+
22812285
22822286 #ifdef VMS
22832287 fname = vms_fixfilename(fname);
@@ -2287,7 +2291,8 @@
22872291 /*
22882292 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
22892293 */
2290- cygwin_conv_to_posix_path(fname, fname);
2294+ cygwin_conv_to_posix_path(fname, posix_fname);
2295+ fname = posix_fname;
22912296 #endif
22922297
22932298 /* expand it if forced or not an absolute path */
diff -r 371201c6b4c1 -r fc2ee817dc98 src/version.c
--- a/src/version.c Fri Jun 20 19:29:35 2008 +0000
+++ b/src/version.c Sat Jun 21 11:12:49 2008 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 328,
671+/**/
670672 327,
671673 /**/
672674 326,
Show on old repository browser