diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-05-17 09:14:54 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-05-17 09:14:54 +0200 |
commit | e121b1dbe78cdf7ad46f493ca3a1cb83c190f719 (patch) | |
tree | 9b38b0944d078da2b0fa30f2bfe70d6c5233e89b /src/nvim/tag.c | |
parent | 2aa308c6852b7c51caef5dd6dc4e809719ca7a55 (diff) | |
parent | d2944e6a298e824e5084ac0dfd8701ff9cd1a523 (diff) | |
download | rneovim-e121b1dbe78cdf7ad46f493ca3a1cb83c190f719.tar.gz rneovim-e121b1dbe78cdf7ad46f493ca3a1cb83c190f719.tar.bz2 rneovim-e121b1dbe78cdf7ad46f493ca3a1cb83c190f719.zip |
Merge #8331 'handle various errors'
closes #8331
Diffstat (limited to 'src/nvim/tag.c')
-rw-r--r-- | src/nvim/tag.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c index f23465e501..ba2727f0d7 100644 --- a/src/nvim/tag.c +++ b/src/nvim/tag.c @@ -2407,8 +2407,8 @@ jumpto_tag ( /* If it was a CTRL-W CTRL-] command split window now. For ":tab tag" * open a new tab page. */ if (postponed_split || cmdmod.tab != 0) { - win_split(postponed_split > 0 ? postponed_split : 0, - postponed_split_flags); + (void)win_split(postponed_split > 0 ? postponed_split : 0, + postponed_split_flags); RESET_BINDING(curwin); } |