aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/mark.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-03-08 12:23:53 +0100
committerGitHub <noreply@github.com>2019-03-08 12:23:53 +0100
commit0355c1ed9c481d4ad3bf24887e0af869834e1b40 (patch)
tree514a6d13225e96d17dbc36f0a8d8c1991acacc3c /src/nvim/mark.c
parent5f84b1dc4154ea8def87b6113fa9b9ed058d83d2 (diff)
parente3d9945f7fd773b69844460153d8481790ff1f30 (diff)
downloadrneovim-0355c1ed9c481d4ad3bf24887e0af869834e1b40.tar.gz
rneovim-0355c1ed9c481d4ad3bf24887e0af869834e1b40.tar.bz2
rneovim-0355c1ed9c481d4ad3bf24887e0af869834e1b40.zip
Merge #9695 'vim-patch:8.1.{739,826,998}'
Diffstat (limited to 'src/nvim/mark.c')
-rw-r--r--src/nvim/mark.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/mark.c b/src/nvim/mark.c
index 05f78c76bc..602648c27c 100644
--- a/src/nvim/mark.c
+++ b/src/nvim/mark.c
@@ -924,7 +924,7 @@ static void mark_adjust_internal(linenr_T line1, linenr_T line2,
int i;
int fnum = curbuf->b_fnum;
linenr_T *lp;
- static pos_T initpos = INIT_POS_T(1, 0, 0);
+ static pos_T initpos = { 1, 0, 0 };
if (line2 < line1 && amount_after == 0L) /* nothing to do */
return;