os/fs: Move mkdir_recurse from eval.c to os/fs.c

This commit is contained in:
ZyX
2015-07-12 14:09:26 +03:00
parent afd3e69e9f
commit 1206ac953f
5 changed files with 127 additions and 31 deletions

View File

@@ -7549,7 +7549,7 @@ int vim_mkdir_emsg(char_u *name, int prot)
{
int ret;
if ((ret = os_mkdir((char *)name, prot)) != 0) {
EMSG3(_("E739: Cannot create directory %s: %s"), name, os_strerror(ret));
EMSG3(_(e_mkdir), name, os_strerror(ret));
return FAIL;
}
return OK;