diff options
Diffstat (limited to 'src/spellfile.c')
-rw-r--r-- | src/spellfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/spellfile.c b/src/spellfile.c index 264264c62..058558eb3 100644 --- a/src/spellfile.c +++ b/src/spellfile.c @@ -5972,12 +5972,12 @@ mkspell( // time. if (!over_write && mch_stat((char *)wfname, &st) >= 0) { - emsg(_(e_exists)); + emsg(_(e_file_exists)); goto theend; } if (mch_isdir(wfname)) { - semsg(_(e_isadir2), wfname); + semsg(_(e_src_is_directory), wfname); goto theend; } |