mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 14:08:32 +00:00
removed mch_rmdir macro
This commit is contained in:

committed by
Thiago de Arruda

parent
a1df458524
commit
96ddc0198d
@@ -5622,7 +5622,7 @@ void vim_deltempdir(void)
|
|||||||
FreeWild(file_count, files);
|
FreeWild(file_count, files);
|
||||||
}
|
}
|
||||||
path_tail(NameBuff)[-1] = NUL;
|
path_tail(NameBuff)[-1] = NUL;
|
||||||
(void)mch_rmdir(NameBuff);
|
os_rmdir((char *)NameBuff);
|
||||||
|
|
||||||
vim_free(vim_tempdir);
|
vim_free(vim_tempdir);
|
||||||
vim_tempdir = NULL;
|
vim_tempdir = NULL;
|
||||||
|
@@ -31,7 +31,6 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define vim_mkdir(x, y) os_mkdir((char *)(x), (y))
|
#define vim_mkdir(x, y) os_mkdir((char *)(x), (y))
|
||||||
#define mch_rmdir(x) os_rmdir((char *)(x))
|
|
||||||
|
|
||||||
/* The number of arguments to a signal handler is configured here. */
|
/* The number of arguments to a signal handler is configured here. */
|
||||||
/* It used to be a long list of almost all systems. Any system that doesn't
|
/* It used to be a long list of almost all systems. Any system that doesn't
|
||||||
|
Reference in New Issue
Block a user