0
0
mirror of https://github.com/vim/vim.git synced 2025-09-29 04:34:16 -04:00

updated for version 7.0-108

This commit is contained in:
Bram Moolenaar
2006-09-14 19:36:57 +00:00
parent bc1a7c32e3
commit e38536441c
3 changed files with 8 additions and 2 deletions

View File

@@ -799,7 +799,7 @@ mch_isdir(name)
/* /*
* Create directory "name". * Create directory "name".
*/ */
void int
mch_mkdir(name) mch_mkdir(name)
char_u *name; char_u *name;
{ {
@@ -807,7 +807,11 @@ mch_mkdir(name)
lock = CreateDir(name); lock = CreateDir(name);
if (lock != NULL) if (lock != NULL)
{
UnLock(lock); UnLock(lock);
return 0;
}
return -1;
} }
/* /*

View File

@@ -25,7 +25,7 @@ extern long mch_getperm __ARGS((char_u *name));
extern int mch_setperm __ARGS((char_u *name, long perm)); extern int mch_setperm __ARGS((char_u *name, long perm));
extern void mch_hide __ARGS((char_u *name)); extern void mch_hide __ARGS((char_u *name));
extern int mch_isdir __ARGS((char_u *name)); extern int mch_isdir __ARGS((char_u *name));
extern void mch_mkdir __ARGS((char_u *name)); extern int mch_mkdir __ARGS((char_u *name));
extern int mch_can_exe __ARGS((char_u *name)); extern int mch_can_exe __ARGS((char_u *name));
extern int mch_nodetype __ARGS((char_u *name)); extern int mch_nodetype __ARGS((char_u *name));
extern void mch_early_init __ARGS((void)); extern void mch_early_init __ARGS((void));

View File

@@ -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 */
/**/
108,
/**/ /**/
107, 107,
/**/ /**/