diff options
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index ab8b33aa12..0698a8dc0d 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -1551,7 +1551,7 @@ static void edit_buffers(mparm_T *parmp, char_u *cwd) /* When w_arg_idx is -1 remove the window (see create_windows()). */ if (curwin->w_arg_idx == -1) { - win_close(curwin, TRUE); + win_close(curwin, true); advance = FALSE; } @@ -1563,7 +1563,7 @@ static void edit_buffers(mparm_T *parmp, char_u *cwd) // When w_arg_idx is -1 remove the window (see create_windows()). if (curwin->w_arg_idx == -1) { ++arg_idx; - win_close(curwin, TRUE); + win_close(curwin, true); advance = FALSE; continue; } @@ -1598,7 +1598,7 @@ static void edit_buffers(mparm_T *parmp, char_u *cwd) did_emsg = FALSE; /* avoid hit-enter prompt */ getout(1); } - win_close(curwin, TRUE); + win_close(curwin, true); advance = FALSE; } if (arg_idx == GARGCOUNT - 1) |