diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2021-08-22 16:10:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-22 07:10:57 -0700 |
commit | db1b0ee3b30fd4cd323907c7f24bd575c22e68f0 (patch) | |
tree | f018c725dfbafc2d128db9ed5a4b3662cce14429 /src/nvim/window.c | |
parent | 783140c670115541f3eb68be6e148f2eeb1696e1 (diff) | |
download | rneovim-db1b0ee3b30fd4cd323907c7f24bd575c22e68f0.tar.gz rneovim-db1b0ee3b30fd4cd323907c7f24bd575c22e68f0.tar.bz2 rneovim-db1b0ee3b30fd4cd323907c7f24bd575c22e68f0.zip |
refactor: replace TRUE/FALSE with true/false #15425
Diffstat (limited to 'src/nvim/window.c')
-rw-r--r-- | src/nvim/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c index 990064b33d..f0faeac2d7 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -2604,7 +2604,7 @@ void win_close_othertab(win_T *win, int free_buf, tabpage_T *tp) { int dir; tabpage_T *ptp = NULL; - int free_tp = FALSE; + bool free_tp = false; // Get here with win->w_buffer == NULL when win_close() detects the tab page // changed. |