diff options
author | Stefan Hoffmann <stefan991@gmail.com> | 2014-04-08 22:01:33 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-11 13:31:48 -0300 |
commit | a1df458524e9de0c19e4151e15765dc2bc508259 (patch) | |
tree | 8269ae4d96489d1ca23b8ce8aa4690bab555a200 /src/spell.c | |
parent | 445f31f076325a68d91746bb41ac9ba139144c2d (diff) | |
download | rneovim-a1df458524e9de0c19e4151e15765dc2bc508259.tar.gz rneovim-a1df458524e9de0c19e4151e15765dc2bc508259.tar.bz2 rneovim-a1df458524e9de0c19e4151e15765dc2bc508259.zip |
removed mch_remove macro
Diffstat (limited to 'src/spell.c')
-rw-r--r-- | src/spell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/spell.c b/src/spell.c index 60e1fb172c..ea3f0787e3 100644 --- a/src/spell.c +++ b/src/spell.c @@ -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; } |