# HG changeset patch # User Christian Brabandt # Date 1529759704 -7200 # Node ID 42a9178374d134af4e8e0563ce4a4a0ff43c8736 # Parent 9efe9dec796aa688f5c82e950b6288424e396b5f patch 8.1.0102: cannot build without syntax highlighting commit https://github.com/vim/vim/commit/1f8c469fe22adf7b42843c3abf118ed339e6da0e Author: Bram Moolenaar Date: Sat Jun 23 15:09:10 2018 +0200 patch 8.1.0102: cannot build without syntax highlighting Problem: Cannot build without syntax highlighting. Solution: Add #ifdef around using reg_do_extmatch. diff --git a/src/regexp.c b/src/regexp.c --- 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( diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 102, +/**/ 101, /**/ 100,