vim-patch:7.4.2250

Problem:    Some error message cannot be translated.
Solution:   Enclose them in _() and N_(). (Dominique Pelle)

5b30291785
This commit is contained in:
ckelsel
2017-07-10 08:55:54 +08:00
committed by James McCoy
parent f746e38955
commit c805f2cf54
5 changed files with 12 additions and 12 deletions

View File

@@ -2068,7 +2068,7 @@ char_u *did_set_spelllang(win_T *wp)
// destroying the buffer we are using...
if (!bufref_valid(&bufref)) {
ret_msg =
(char_u *)"E797: SpellFileMissing autocommand deleted buffer";
(char_u *)N_("E797: SpellFileMissing autocommand deleted buffer");
goto theend;
}
}