Problem: NFA engine not used for "\_[0-9]".
Solution: Enable this, fixed in patch 1005.
/* "\_[" is collection plus newline */
if (c == '[')
- /* TODO: make this work
- * goto collection; */
- return FAIL;
+ goto collection;
/* "\_x" is character class plus newline */
/*FALLTHROUGH*/
}
break;
-/* collection: */
case Magic('['):
+collection:
/*
* Glue is emitted between several atoms from the [].
* It is either NFA_OR, or NFA_CONCAT.
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1006,
/**/
1005,
/**/