removed mch_remove macro

This commit is contained in:
Stefan Hoffmann
2014-04-08 22:01:33 +02:00
committed by Thiago de Arruda
parent 445f31f076
commit a1df458524
13 changed files with 50 additions and 50 deletions

View File

@@ -4228,9 +4228,9 @@ void spell_delete_wordlist(void)
char_u fname[MAXPATHL];
if (int_wordlist != NULL) {
mch_remove(int_wordlist);
os_remove((char *)int_wordlist);
int_wordlist_spl(fname);
mch_remove(fname);
os_remove((char *)fname);
vim_free(int_wordlist);
int_wordlist = NULL;
}