aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_getln.c
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-02-24 09:26:17 -0500
committerGitHub <noreply@github.com>2021-02-24 09:26:17 -0500
commitd290da70b76a2dcd99591ec1a175a4ae29f64bfd (patch)
treeff1820ca53dfe5484414a643339f8d136d7f0ceb /src/nvim/ex_getln.c
parent6b7cc45c4845624aa08232a860941b5a55b9640b (diff)
parentab5083b5fc9fc8c62dae6aefc4fb2615a61c6fff (diff)
downloadrneovim-d290da70b76a2dcd99591ec1a175a4ae29f64bfd.tar.gz
rneovim-d290da70b76a2dcd99591ec1a175a4ae29f64bfd.tar.bz2
rneovim-d290da70b76a2dcd99591ec1a175a4ae29f64bfd.zip
Merge pull request #14001 from janlazo/vim-8.2.2545
vim-patch:8.2.{2545,2547,2548}
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r--src/nvim/ex_getln.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c
index c66ae13f53..d470bfb418 100644
--- a/src/nvim/ex_getln.c
+++ b/src/nvim/ex_getln.c
@@ -6774,6 +6774,6 @@ static void set_search_match(pos_T *t)
t->col = search_match_endcol;
if (t->lnum > curbuf->b_ml.ml_line_count) {
t->lnum = curbuf->b_ml.ml_line_count;
- coladvance((colnr_T)MAXCOL);
+ coladvance(MAXCOL);
}
}