summaryrefslogtreecommitdiff
path: root/src/spell.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-24 22:11:55 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-24 22:11:55 +0200
commit5b30291785e6b9be1a607504c14bd03c601b59a6 (patch)
tree86e6c5c0cf7090f485392cfecb80b43602a8b0cd /src/spell.c
parentba2099034f92a2814494f37bddb0c57d034401b4 (diff)
downloadvim-git-5b30291785e6b9be1a607504c14bd03c601b59a6.tar.gz
patch 7.4.2250v7.4.2250
Problem: Some error message cannot be translated. Solution: Enclose them in _() and N_(). (Dominique Pelle)
Diffstat (limited to 'src/spell.c')
-rw-r--r--src/spell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spell.c b/src/spell.c
index 8d8689ba2..5fd38b3c6 100644
--- a/src/spell.c
+++ b/src/spell.c
@@ -2470,7 +2470,7 @@ 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";
+ ret_msg = (char_u *)N_("E797: SpellFileMissing autocommand deleted buffer");
goto theend;
}
#endif