diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-09-05 20:57:41 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-09-05 20:57:41 -0400 |
commit | 3f5482d3251b3bbdc7c4df8a8e64eb3af7e5922c (patch) | |
tree | c3703170cc71c81da50b25fd0a8ff24af387d594 /src/nvim/ex_docmd.c | |
parent | d66cd61b79d6d592436c4552dbdddb904dd1c22e (diff) | |
parent | d860ba45e25231ae54c6fd12ecd00dc936780184 (diff) | |
download | rneovim-3f5482d3251b3bbdc7c4df8a8e64eb3af7e5922c.tar.gz rneovim-3f5482d3251b3bbdc7c4df8a8e64eb3af7e5922c.tar.bz2 rneovim-3f5482d3251b3bbdc7c4df8a8e64eb3af7e5922c.zip |
Merge pull request #1107 from fmoralesc/matchaddpos
Add matchaddpos()-related vim patches. [vim-patch: 7.4.330, 7.4.334, 7.4.343, 7.4.344, 7.4.362]
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index ab7add1c5b..2dc5ad436d 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -8859,7 +8859,7 @@ static void ex_match(exarg_T *eap) c = *end; *end = NUL; - match_add(curwin, g, p + 1, 10, id); + match_add(curwin, g, p + 1, 10, id, NULL); free(g); *end = c; } |