Problem: Can't build with tiny features. (Ike Devolder)
Solution: Add #ifdef.
else if (*keys == Ctrl_C)
{
/* If CTRL-C has been unmapped, reuse it for Interrupting. */
+#ifdef FEAT_LOCALMAP
if (map_table == curbuf->b_maphash)
curbuf->b_mapped_ctrl_c &= ~mode;
else
+#endif
mapped_ctrl_c &= ~mode;
}
goto theend;
/* If CTRL-C has been mapped, don't always use it for Interrupting. */
if (*keys == Ctrl_C)
{
+#ifdef FEAT_LOCALMAP
if (map_table == curbuf->b_maphash)
curbuf->b_mapped_ctrl_c |= mode;
else
+#endif
mapped_ctrl_c |= mode;
}
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 571,
/**/
570,
/**/