Problem: In tiny build ireg_icombine is undefined. (Tony Mechelynck)
Solution: Add #ifdef.
/* 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);
}
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1152,
/**/
1151,
/**/