0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.0044

This commit is contained in:
Bram Moolenaar
2005-01-25 21:53:18 +00:00
parent aab21c3533
commit 281bdcec60
9 changed files with 68 additions and 27 deletions

View File

@@ -1584,7 +1584,7 @@ getline_cookie(getline, cookie)
/*
* Avoid optimisation bug in VC++ version 6.0
*/
# pragma optimize( "g", off )
#pragma optimize( "g", off )
#endif
static char_u *
do_one_cmd(cmdlinep, sourcing,
@@ -2611,7 +2611,7 @@ doend:
return ea.nextcmd;
}
#if (_MSC_VER == 1200)
# pragma optimize( "", on )
#pragma optimize( "", on )
#endif
/*
@@ -7749,7 +7749,7 @@ ex_mkrc(eap)
/* When using 'viewdir' may have to create the directory. */
if (using_vdir && !mch_isdir(p_vdir))
if (vim_mkdir(p_vdir, 0755) != 0)
EMSG2(_("E738: Cannot create directory: %s"), p_vdir);
EMSG2(_("E739: Cannot create directory: %s"), p_vdir);
#endif
fd = open_exfile(fname, eap->forceit, WRITEBIN);