diff options
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 9815063633..5f832bfcf3 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -842,7 +842,7 @@ void goto_buffer(exarg_T *eap, int start, int dir, int count) enter_cleanup(&cs); /* Quitting means closing the split window, nothing else. */ - win_close(curwin, TRUE); + win_close(curwin, true); swap_exists_action = SEA_NONE; swap_exists_did_quit = TRUE; @@ -4651,7 +4651,7 @@ void ex_buffer_all(exarg_T *eap) && !ONE_WINDOW && !(wp->w_closing || wp->w_buffer->b_locked > 0) ) { - win_close(wp, FALSE); + win_close(wp, false); wpnext = firstwin; /* just in case an autocommand does something strange with windows */ tpnext = first_tabpage; /* start all over...*/ @@ -4724,7 +4724,7 @@ void ex_buffer_all(exarg_T *eap) enter_cleanup(&cs); /* User selected Quit at ATTENTION prompt; close this window. */ - win_close(curwin, TRUE); + win_close(curwin, true); --open_wins; swap_exists_action = SEA_NONE; swap_exists_did_quit = TRUE; |