From 1f8c469fe22adf7b42843c3abf118ed339e6da0e Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 23 Jun 2018 15:09:10 +0200 Subject: patch 8.1.0102: cannot build without syntax highlighting Problem: Cannot build without syntax highlighting. Solution: Add #ifdef around using reg_do_extmatch. --- src/regexp.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/regexp.c') diff --git a/src/regexp.c b/src/regexp.c index 9ac712eebc..7344928ff0 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( -- cgit v1.2.3