aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer_defs.h
diff options
context:
space:
mode:
authorNicolas Cornu <nicolac76@yahoo.fr>2015-09-07 15:03:47 +0200
committerNicolas Cornu <nicolac76@yahoo.fr>2015-09-07 15:03:47 +0200
commit41778e2e10e43d6ba96b27e63fb392a8d6d64b01 (patch)
treeef90d072ca5c0bc6c912412d2aa9ba3ca393e7ab /src/nvim/buffer_defs.h
parentf39ac698241885137e77efa4edeee7be21dd8deb (diff)
downloadrneovim-41778e2e10e43d6ba96b27e63fb392a8d6d64b01.tar.gz
rneovim-41778e2e10e43d6ba96b27e63fb392a8d6d64b01.tar.bz2
rneovim-41778e2e10e43d6ba96b27e63fb392a8d6d64b01.zip
win_T.w_cline_folded from int to bool
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r--src/nvim/buffer_defs.h2
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 */