diff options
author | Steven Oliver <oliver.steven@gmail.com> | 2015-08-30 16:27:47 -0400 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2015-09-04 11:07:33 +0200 |
commit | f7c5dc4db266bfc1db3ea76d114d9a04413fe875 (patch) | |
tree | ec6fdb7594d41c89d3b71f9ebd82ced7652b2e0d /src/nvim/main.c | |
parent | ea33a75d0738526dd1ecfdeb387aeccb15fb7832 (diff) | |
download | rneovim-f7c5dc4db266bfc1db3ea76d114d9a04413fe875.tar.gz rneovim-f7c5dc4db266bfc1db3ea76d114d9a04413fe875.tar.bz2 rneovim-f7c5dc4db266bfc1db3ea76d114d9a04413fe875.zip |
Remove instances of TRUE/FALSE macro
memory.c
os_unix.c
path.c
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index 9af15924bd..3e096ee190 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -1737,7 +1737,7 @@ static void edit_buffers(mparm_T *parmp) --autocmd_no_leave; TIME_MSG("editing files in windows"); if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS) - win_equal(curwin, FALSE, 'b'); /* adjust heights */ + win_equal(curwin, false, 'b'); /* adjust heights */ } /* |