mirror of
https://github.com/neovim/neovim.git
synced 2025-12-11 09:02:40 +00:00
os/fs: Move mkdir_recurse from eval.c to os/fs.c
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user