diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-05 23:04:54 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-06 20:26:30 -0400 |
commit | 2be853d486be2cac3b04efbf425afac2dd9361a3 (patch) | |
tree | 9e3206063676ecf5353794d343c8fdd477fc7ee5 /src/nvim/tag.c | |
parent | c0d26ba4f9a5a531e062fdfe96dddaeed56cdcc2 (diff) | |
download | rneovim-2be853d486be2cac3b04efbf425afac2dd9361a3.tar.gz rneovim-2be853d486be2cac3b04efbf425afac2dd9361a3.tar.bz2 rneovim-2be853d486be2cac3b04efbf425afac2dd9361a3.zip |
lint
Diffstat (limited to 'src/nvim/tag.c')
-rw-r--r-- | src/nvim/tag.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c index 91f182dd50..54090afd71 100644 --- a/src/nvim/tag.c +++ b/src/nvim/tag.c @@ -2608,10 +2608,10 @@ static int jumpto_tag( win_enter(curwin_save, true); } - --RedrawingDisabled; + RedrawingDisabled--; } else { - --RedrawingDisabled; - if (postponed_split) { /* close the window */ + RedrawingDisabled--; + if (postponed_split) { // close the window win_close(curwin, false); postponed_split = 0; } |