diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-06-23 15:09:10 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-06-23 15:09:10 +0200 |
commit | 1f8c469fe22adf7b42843c3abf118ed339e6da0e (patch) | |
tree | d0e31c12b251fb37b81465d405ca9fa6205a673c /src/regexp.c | |
parent | 81612b7a7dc50a6c0da9f42fa48f1f576a4ad616 (diff) | |
download | vim-git-1f8c469fe22adf7b42843c3abf118ed339e6da0e.tar.gz |
patch 8.1.0102: cannot build without syntax highlightingv8.1.0102
Problem: Cannot build without syntax highlighting.
Solution: Add #ifdef around using reg_do_extmatch.
Diffstat (limited to 'src/regexp.c')
-rw-r--r-- | src/regexp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/regexp.c b/src/regexp.c index 9ac712eeb..7344928ff 100644 --- a/src/regexp.c +++ b/src/regexp.c @@ -8376,11 +8376,15 @@ vim_regexec_multi( #ifdef FEAT_EVAL report_re_switch(pat); #endif +#ifdef FEAT_SYN_HL // checking for \z misuse was already done when compiling for NFA, // allow all here reg_do_extmatch = REX_ALL; +#endif rmp->regprog = vim_regcomp(pat, re_flags); +#ifdef FEAT_SYN_HL reg_do_extmatch = 0; +#endif if (rmp->regprog != NULL) result = rmp->regprog->engine->regexec_multi( |