diff options
author | ckelsel <ckelsel@hotmail.com> | 2017-07-11 08:27:05 +0800 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-07-13 23:15:29 -0400 |
commit | 06f4b963222efd2a986e79b7390b50d6e42941be (patch) | |
tree | b9167fa9c1f907da976029a1a956f71e3e93cce8 /src/nvim/ex_cmds.c | |
parent | c805f2cf54aa4ab066bb9e7f3d5b7cc40d04004e (diff) | |
download | rneovim-06f4b963222efd2a986e79b7390b50d6e42941be.tar.gz rneovim-06f4b963222efd2a986e79b7390b50d6e42941be.tar.bz2 rneovim-06f4b963222efd2a986e79b7390b50d6e42941be.zip |
lint
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index a534a476df..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) + if (!got_int) { EMSG2(_("E151: No match: %s"), NameBuff); + } return; } |