1
0
forked from aniani/vim

updated for version 7.3.1152

Problem:    In tiny build ireg_icombine is undefined. (Tony Mechelynck)
Solution:   Add #ifdef.
This commit is contained in:
Bram Moolenaar
2013-06-08 23:30:04 +02:00
parent 1e02e6620b
commit a940aa6fc4
2 changed files with 7 additions and 1 deletions

View File

@@ -6198,7 +6198,11 @@ nfa_regexec_both(line, startcol)
/* If match_text is set it contains the full text that must match.
* Nothing else to try. Doesn't handle combining chars well. */
if (prog->match_text != NULL && !ireg_icombine)
if (prog->match_text != NULL
#ifdef FEAT_MBYTE
&& !ireg_icombine
#endif
)
return find_match_text(col, prog->regstart, prog->match_text);
}

View File

@@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1152,
/**/
1151,
/**/