diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-09-10 00:32:43 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-09-10 00:32:43 -0400 |
commit | 6d50f4d0c9098497686161c08121b21d492a469d (patch) | |
tree | 539673000d461fa685920f341cd8d0f219f1b378 /src/nvim/screen.c | |
parent | b50cc42eb7afda714f3678a627ff6c55d342bc30 (diff) | |
parent | 23acaf8940ca55d6fb4f180c2b78c2f90bfafa8a (diff) | |
download | rneovim-6d50f4d0c9098497686161c08121b21d492a469d.tar.gz rneovim-6d50f4d0c9098497686161c08121b21d492a469d.tar.bz2 rneovim-6d50f4d0c9098497686161c08121b21d492a469d.zip |
Merge #3297 'move.c refactor'
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index b40bf9ab5d..0c4cf30602 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -1992,7 +1992,7 @@ static void fold_line(win_T *wp, long fold_count, foldinfo_T *foldinfo, linenr_T && lnume >= curwin->w_cursor.lnum) { curwin->w_cline_row = row; curwin->w_cline_height = 1; - curwin->w_cline_folded = TRUE; + curwin->w_cline_folded = true; curwin->w_valid |= (VALID_CHEIGHT|VALID_CROW); } } @@ -3866,7 +3866,7 @@ win_line ( if (wp == curwin && lnum == curwin->w_cursor.lnum) { curwin->w_cline_row = startrow; curwin->w_cline_height = row - startrow; - curwin->w_cline_folded = FALSE; + curwin->w_cline_folded = false; curwin->w_valid |= (VALID_CHEIGHT|VALID_CROW); } |