[svn:parrot] r41035 - branches/kill_parrot_cont/src/pmc
bacek at svn.parrot.org
bacek at svn.parrot.org
Sun Sep 6 04:11:33 UTC 2009
Author: bacek
Date: Sun Sep 6 04:11:32 2009
New Revision: 41035
URL: https://trac.parrot.org/parrot/changeset/41035
Log:
Unbroke exception.pmc
Modified:
branches/kill_parrot_cont/src/pmc/exception.pmc
Modified: branches/kill_parrot_cont/src/pmc/exception.pmc
==============================================================================
--- branches/kill_parrot_cont/src/pmc/exception.pmc Sun Sep 6 04:06:59 2009 (r41034)
+++ branches/kill_parrot_cont/src/pmc/exception.pmc Sun Sep 6 04:11:32 2009 (r41035)
@@ -645,7 +645,7 @@
* XXX TT#596 - when we have Context PMCs, just take and set that. */
if (!PMC_IS_NULL(value) && VTABLE_isa(interp, value, CONST_STRING(interp, "Continuation"))) {
PMC *ctx = PMC_cont(value)->from_ctx;
- if (!PMC_IS_NULL(ctx)) {
+ if (!PMC_IS_NULL(ctx))
SET_ATTR_thrower(interp, SELF, ctx);
}
}
More information about the parrot-commits
mailing list