aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-05-08 16:17:57 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-05-08 16:17:57 +0200
commitb23aa1cf099ed43307c14fe47ddda87ef78f6173 (patch)
tree0cc1f9add66d1ee62f21800df0403a043a36d7ad /src/nvim/buffer.c
parent4c3d7b29ec7b46fcd1defbe84c03e3e3b2a9e9f5 (diff)
parent188bae586f5cbdeebe9b229371e78a3bf17bdb8a (diff)
downloadrneovim-b23aa1cf099ed43307c14fe47ddda87ef78f6173.tar.gz
rneovim-b23aa1cf099ed43307c14fe47ddda87ef78f6173.tar.bz2
rneovim-b23aa1cf099ed43307c14fe47ddda87ef78f6173.zip
Merge #6597 'winhighlight'
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r--src/nvim/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c
index fe80f7f62e..4ed75d8a2d 100644
--- a/src/nvim/buffer.c
+++ b/src/nvim/buffer.c
@@ -2316,7 +2316,7 @@ void get_winopts(buf_T *buf)
/* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
if (p_fdls >= 0)
curwin->w_p_fdl = p_fdls;
- check_colorcolumn(curwin);
+ didset_window_options(curwin);
}
/*