mirror of
https://github.com/neovim/neovim.git
synced 2025-09-16 16:28:17 +00:00
window: refactor boolean variables in win_close()
free_buf (param) and help_window (variable) are bool.
This commit is contained in:
@@ -2598,7 +2598,7 @@ void ex_cclose(exarg_T *eap)
|
||||
/* Find existing quickfix window and close it. */
|
||||
win = qf_find_win(qi);
|
||||
if (win != NULL)
|
||||
win_close(win, FALSE);
|
||||
win_close(win, false);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user