summaryrefslogtreecommitdiffstats
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2015-07-21 15:48:27 +0200
committerBram Moolenaar <Bram@vim.org>2015-07-21 15:48:27 +0200
commit6561d52ecbe6e24d1b90403078cc8b76c53c42fc (patch)
treef68a8d31545f7b89ae0e31a81f8e0ac0216a99ac /src/ex_docmd.c
parentd51cb706a4e3ae99555bc214a64c83603c701139 (diff)
patch 7.4.792v7.4.792
Problem: Can only conceal text by defining syntax items. Solution: Use matchadd() to define concealing. (Christian Brabandt)
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r--src/ex_docmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 971a2022bd..00485e3590 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -12079,7 +12079,7 @@ ex_match(eap)
c = *end;
*end = NUL;
- match_add(curwin, g, p + 1, 10, id, NULL);
+ match_add(curwin, g, p + 1, 10, id, NULL, NULL);
vim_free(g);
*end = c;
}