Subject: | Loop context change in blead perl |
Change 33057 to blead splits up CXt_LOOP to two new #define's.
The attached patch fixes Want.xs to handle this.
Subject: | want.patch |
--- Want.xs
+++ Want.xs
@@ -161,7 +161,12 @@
if (debugger_trouble && i > 0) return tcx;
default:
continue;
+#ifdef CXt_LOOP_PLAIN
+ case CXt_LOOP_PLAIN:
+ case CXt_LOOP_FOR:
+#else
case CXt_LOOP:
+#endif
return tcx;
case CXt_SUB:
case CXt_FORMAT: