diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-11-12 11:13:02 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-11-12 11:13:02 -0500 |
commit | 205ac8d176f67514e3bc8fa069c8e7d92be69094 (patch) | |
tree | d3e44e746d7bbea8821d3e8eae4fce146a9032a6 /src/nvim/diff.c | |
parent | 8da78bc3ae694aa2a6edaac97756211374491471 (diff) | |
parent | 63e255887099b3728c60f2cdd0c86245eabbb839 (diff) | |
download | rneovim-205ac8d176f67514e3bc8fa069c8e7d92be69094.tar.gz rneovim-205ac8d176f67514e3bc8fa069c8e7d92be69094.tar.bz2 rneovim-205ac8d176f67514e3bc8fa069c8e7d92be69094.zip |
Merge pull request #1345 from war1025/dev/wininfo_bools
Convert some values into bools
Diffstat (limited to 'src/nvim/diff.c')
-rw-r--r-- | src/nvim/diff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/diff.c b/src/nvim/diff.c index 39db77bd82..18e30f8587 100644 --- a/src/nvim/diff.c +++ b/src/nvim/diff.c @@ -1745,11 +1745,11 @@ void diff_set_topline(win_T *fromwin, win_T *towin) } // safety check (if diff info gets outdated strange things may happen) - towin->w_botfill = FALSE; + towin->w_botfill = false; if (towin->w_topline > towin->w_buffer->b_ml.ml_line_count) { towin->w_topline = towin->w_buffer->b_ml.ml_line_count; - towin->w_botfill = TRUE; + towin->w_botfill = true; } if (towin->w_topline < 1) { |