Skip to content
Snippets Groups Projects
Commit a2442437 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.0-228

parent 053b9fa9
No related branches found
Tags v7.0.228
No related merge requests found
...@@ -55,6 +55,12 @@ ...@@ -55,6 +55,12 @@
# endif # endif
#endif #endif
#ifdef __CYGWIN__
# ifndef WIN32
# include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() */
# endif
#endif
#if defined(HAVE_SELECT) #if defined(HAVE_SELECT)
extern int select __ARGS((int, fd_set *, fd_set *, fd_set *, struct timeval *)); extern int select __ARGS((int, fd_set *, fd_set *, fd_set *, struct timeval *));
#endif #endif
...@@ -2230,6 +2236,13 @@ mch_FullName(fname, buf, len, force) ...@@ -2230,6 +2236,13 @@ mch_FullName(fname, buf, len, force)
fname = vms_fixfilename(fname); fname = vms_fixfilename(fname);
#endif #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 */ /* expand it if forced or not an absolute path */
if (force || !mch_isFullName(fname)) if (force || !mch_isFullName(fname))
{ {
......
...@@ -666,6 +666,8 @@ static char *(features[]) = ...@@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
228,
/**/ /**/
227, 227,
/**/ /**/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment