diff options
author | James McCoy <jamessan@jamessan.com> | 2017-07-13 23:19:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-13 23:19:12 -0400 |
commit | c4ac3ffbef9258a615e6549d40decef96e16bd9c (patch) | |
tree | b9167fa9c1f907da976029a1a956f71e3e93cce8 /src/nvim/ex_cmds.c | |
parent | f746e38955f33dfdcc0dbdb40efaae82fb4b4c12 (diff) | |
parent | 06f4b963222efd2a986e79b7390b50d6e42941be (diff) | |
download | rneovim-c4ac3ffbef9258a615e6549d40decef96e16bd9c.tar.gz rneovim-c4ac3ffbef9258a615e6549d40decef96e16bd9c.tar.bz2 rneovim-c4ac3ffbef9258a615e6549d40decef96e16bd9c.zip |
Merge pull request #6993 from ckelsel/vim-7.4.2250
Vim 7.4.2250
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index b550e9a9c6..0987cb3915 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -5023,8 +5023,9 @@ static void helptags_one(char_u *dir, char_u *ext, char_u *tagfname, if (gen_expand_wildcards(1, buff_list, &filecount, &files, EW_FILE|EW_SILENT) == FAIL || filecount == 0) { - if (!got_int) - EMSG2("E151: No match: %s", NameBuff); + if (!got_int) { + EMSG2(_("E151: No match: %s"), NameBuff); + } return; } @@ -5223,7 +5224,7 @@ static void do_helptags(char_u *dirname, bool add_help_tags) if (gen_expand_wildcards(1, buff_list, &filecount, &files, EW_FILE|EW_SILENT) == FAIL || filecount == 0) { - EMSG2("E151: No match: %s", NameBuff); + EMSG2(_("E151: No match: %s"), NameBuff); xfree(dirname); return; } |