commit | 5b30291785e6b9be1a607504c14bd03c601b59a6 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Aug 24 22:11:55 2016 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Aug 24 22:11:55 2016 +0200 |
tree | 86e6c5c0cf7090f485392cfecb80b43602a8b0cd | |
parent | ba2099034f92a2814494f37bddb0c57d034401b4 [diff] [blame] |
patch 7.4.2250 Problem: Some error message cannot be translated. Solution: Enclose them in _() and N_(). (Dominique Pelle)
diff --git a/src/spell.c b/src/spell.c index 8d8689b..5fd38b3 100644 --- a/src/spell.c +++ b/src/spell.c
@@ -2470,7 +2470,7 @@ * destroying the buffer we are using... */ if (!bufref_valid(&bufref)) { - ret_msg = (char_u *)"E797: SpellFileMissing autocommand deleted buffer"; + ret_msg = (char_u *)N_("E797: SpellFileMissing autocommand deleted buffer"); goto theend; } #endif