mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 13:38:34 +00:00
removed mch_remove macro
This commit is contained in:

committed by
Thiago de Arruda

parent
445f31f076
commit
a1df458524
@@ -2509,7 +2509,7 @@ void ex_make(exarg_T *eap)
|
||||
fname = get_mef_name();
|
||||
if (fname == NULL)
|
||||
return;
|
||||
mch_remove(fname); /* in case it's not unique */
|
||||
os_remove((char *)fname); // in case it's not unique
|
||||
|
||||
/*
|
||||
* If 'shellpipe' empty: don't redirect to 'errorfile'.
|
||||
@@ -2554,7 +2554,7 @@ void ex_make(exarg_T *eap)
|
||||
if (res > 0 && !eap->forceit)
|
||||
qf_jump(qi, 0, 0, FALSE); /* display first error */
|
||||
|
||||
mch_remove(fname);
|
||||
os_remove((char *)fname);
|
||||
vim_free(fname);
|
||||
vim_free(cmd);
|
||||
}
|
||||
|
Reference in New Issue
Block a user