0
0
mirror of https://github.com/vim/vim.git synced 2025-09-05 21:43:39 -04:00

updated for version 7.1-328

This commit is contained in:
Bram Moolenaar 2008-06-21 11:12:49 +00:00
parent b64bb6e3a5
commit bf820723f5
2 changed files with 8 additions and 1 deletions

View 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 */

View File

@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
328,
/**/
327,
/**/