]> granicus.if.org Git - vim/commitdiff
updated for version 7.0-228 v7.0.228
authorBram Moolenaar <Bram@vim.org>
Thu, 26 Apr 2007 14:26:37 +0000 (14:26 +0000)
committerBram Moolenaar <Bram@vim.org>
Thu, 26 Apr 2007 14:26:37 +0000 (14:26 +0000)
src/os_unix.c
src/version.c

index 047bd84b30486c76d65ed698e880be12dd93a214..5195b6b7b1fbbbab28e7561022445ce5b15364fa 100644 (file)
 # endif
 #endif
 
+#ifdef __CYGWIN__
+# ifndef WIN32
+#  include <sys/cygwin.h>      /* for cygwin_conv_to_posix_path() */
+# endif
+#endif
+
 #if defined(HAVE_SELECT)
 extern int   select __ARGS((int, fd_set *, fd_set *, fd_set *, struct timeval *));
 #endif
@@ -2230,6 +2236,13 @@ mch_FullName(fname, buf, len, force)
     fname = vms_fixfilename(fname);
 #endif
 
+#ifdef __CYGWIN__
+    /*
+     * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
+     */
+    cygwin_conv_to_posix_path(fname, fname);
+#endif
+
     /* expand it if forced or not an absolute path */
     if (force || !mch_isFullName(fname))
     {
index dc85d40a6df0bdc9ffc9eedbb42421d54ce8b824..0dd549fb779f7bae4045f4dd366743bce4ecd84f 100644 (file)
@@ -666,6 +666,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    228,
 /**/
     227,
 /**/