diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-09-14 19:36:57 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-09-14 19:36:57 +0000 |
commit | e38536441c2a32e2e490fc882e3009792953155f (patch) | |
tree | 3e3880fa5305dd7d18515aee0acf45e79969b662 /src | |
parent | bc1a7c32e3926861ce926bcebc577a1cda1a43e1 (diff) | |
download | vim-git-e38536441c2a32e2e490fc882e3009792953155f.tar.gz |
updated for version 7.0-108v7.0.108
Diffstat (limited to 'src')
-rw-r--r-- | src/os_amiga.c | 6 | ||||
-rw-r--r-- | src/proto/os_amiga.pro | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/src/os_amiga.c b/src/os_amiga.c index 37c5c9401..3728bebf1 100644 --- a/src/os_amiga.c +++ b/src/os_amiga.c @@ -799,7 +799,7 @@ mch_isdir(name) /* * Create directory "name". */ - void + int mch_mkdir(name) char_u *name; { @@ -807,7 +807,11 @@ mch_mkdir(name) lock = CreateDir(name); if (lock != NULL) + { UnLock(lock); + return 0; + } + return -1; } /* diff --git a/src/proto/os_amiga.pro b/src/proto/os_amiga.pro index 479297d93..4ac96aac8 100644 --- a/src/proto/os_amiga.pro +++ b/src/proto/os_amiga.pro @@ -25,7 +25,7 @@ extern long mch_getperm __ARGS((char_u *name)); extern int mch_setperm __ARGS((char_u *name, long perm)); extern void mch_hide __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_nodetype __ARGS((char_u *name)); extern void mch_early_init __ARGS((void)); diff --git a/src/version.c b/src/version.c index c828f6f58..67a065046 100644 --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 108, +/**/ 107, /**/ 106, |