diff options
Diffstat (limited to 'src/nvim/arglist.c')
-rw-r--r-- | src/nvim/arglist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/arglist.c b/src/nvim/arglist.c index c6a4be7e13..6c7886dcf3 100644 --- a/src/nvim/arglist.c +++ b/src/nvim/arglist.c @@ -927,7 +927,7 @@ static void arg_all_close_unused_windows(arg_all_state_T *aall) && (first_tabpage->tp_next == NULL || !aall->had_tab)) { aall->use_firstwin = true; } else { - win_close(wp, !buf_hide(buf) && !bufIsChanged(buf), false); + win_close(wp, !buf_hide(buf) && !bufIsChanged(buf)); // check if autocommands removed the next window if (!win_valid(wpnext)) { // start all over... |