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/buffer_defs.h | |
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/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 9c8cdd41ae..98fbef9c87 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -1007,7 +1007,7 @@ struct window_S { * that the cursor is on. We use this to avoid extra calls to plines(). */ int w_cline_height; /* current size of cursor line */ - int w_cline_folded; /* cursor line is folded */ + bool w_cline_folded; /* cursor line is folded */ int w_cline_row; /* starting row of the cursor line */ |