mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 05:28:33 +00:00
window: refactor boolean variables in win_close()
free_buf (param) and help_window (variable) are bool.
This commit is contained in:
@@ -5510,7 +5510,7 @@ void ex_helpclose(exarg_T *eap)
|
||||
{
|
||||
FOR_ALL_WINDOWS_IN_TAB(win, curtab) {
|
||||
if (bt_help(win->w_buffer)) {
|
||||
win_close(win, FALSE);
|
||||
win_close(win, false);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user