diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2017-06-24 13:46:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-24 13:46:48 +0200 |
commit | ca385db4d015adcae4d726f2f7987986832a7df3 (patch) | |
tree | 83f6cd0f3aeaa6a1a659d403134cf42ac9b71ec6 /src/nvim/ops.c | |
parent | 144f584948a0183382411dd583df9b18cd95b473 (diff) | |
parent | 8b375cf471359ad7632af7fa6a2298c9b7596691 (diff) | |
download | rneovim-ca385db4d015adcae4d726f2f7987986832a7df3.tar.gz rneovim-ca385db4d015adcae4d726f2f7987986832a7df3.tar.bz2 rneovim-ca385db4d015adcae4d726f2f7987986832a7df3.zip |
Merge pull request #5266 from bfredl/kbtree
add kbtree_t and use it for bufhl
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index f9153a94a7..5c6f4d0d07 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -3182,7 +3182,7 @@ error: if (curbuf->b_op_start.lnum + (y_type == kMTCharWise) - 1 + nr_lines < curbuf->b_ml.ml_line_count) { mark_adjust(curbuf->b_op_start.lnum + (y_type == kMTCharWise), - (linenr_T)MAXLNUM, nr_lines, 0L); + (linenr_T)MAXLNUM, nr_lines, 0L, false); } // note changed text for displaying and folding |