diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-02-15 03:55:23 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-02-15 03:55:23 -0500 |
commit | baee9fe286fdcb9b04914feb8ab875c6143c2883 (patch) | |
tree | e43970514bd6a60c2c9ddba4852a099e73e9bbce /src/nvim/ex_docmd.c | |
parent | 1e995ea2fd37f61ddf5496bfddf49b5ee0a527a8 (diff) | |
parent | b137ebdd17cd3015fdb1123c2c1d9c54f37e8548 (diff) | |
download | rneovim-baee9fe286fdcb9b04914feb8ab875c6143c2883.tar.gz rneovim-baee9fe286fdcb9b04914feb8ab875c6143c2883.tar.bz2 rneovim-baee9fe286fdcb9b04914feb8ab875c6143c2883.zip |
Merge pull request #4220 from watiko/vim-7.4.792
vim-patch:7.4.792
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 c785b1c1b9..dfae2b849d 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -9404,7 +9404,7 @@ static void ex_match(exarg_T *eap) c = *end; *end = NUL; - match_add(curwin, g, p + 1, 10, id, NULL); + match_add(curwin, g, p + 1, 10, id, NULL, NULL); xfree(g); *end = c; } |