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:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -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));
|
||||||
|
@@ -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,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user