From 63e255887099b3728c60f2cdd0c86245eabbb839 Mon Sep 17 00:00:00 2001 From: Wayne Rowcliffe Date: Sat, 25 Oct 2014 11:23:08 -0500 Subject: Convert some values from buffer_defs.h to bools --- src/nvim/diff.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/diff.c') 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) { -- cgit