[svn:parrot] r41028 - in branches/kill_parrot_cont/src: . pmc

whiteknight at svn.parrot.org whiteknight at svn.parrot.org
Sun Sep 6 00:41:17 UTC 2009


Author: whiteknight
Date: Sun Sep  6 00:41:16 2009
New Revision: 41028
URL: https://trac.parrot.org/parrot/changeset/41028

Log:
[kill_parrot_cont] Fix last issues, including small codestd fix. All tests in fulltest pass

Modified:
   branches/kill_parrot_cont/src/pmc/exception.pmc
   branches/kill_parrot_cont/src/sub.c

Modified: branches/kill_parrot_cont/src/pmc/exception.pmc
==============================================================================
--- branches/kill_parrot_cont/src/pmc/exception.pmc	Sun Sep  6 00:36:25 2009	(r41027)
+++ branches/kill_parrot_cont/src/pmc/exception.pmc	Sun Sep  6 00:41:16 2009	(r41028)
@@ -644,7 +644,7 @@
             /* Ensure it's a ret cont, and extract the from_ctx. */
             if (!PMC_IS_NULL(value) && VTABLE_isa(interp, value, CONST_STRING(interp, "Continuation"))) {
                 PMC *ctx = PARROT_CONTINUATION(value)->from_ctx;
-                if (!PMC_IS_NULL(ctx)) 
+                if (!PMC_IS_NULL(ctx))
                     SET_ATTR_thrower(interp, SELF, ctx);
             }
         }

Modified: branches/kill_parrot_cont/src/sub.c
==============================================================================
--- branches/kill_parrot_cont/src/sub.c	Sun Sep  6 00:36:25 2009	(r41027)
+++ branches/kill_parrot_cont/src/sub.c	Sun Sep  6 00:41:16 2009	(r41028)
@@ -498,7 +498,7 @@
 {
     ASSERT_ARGS(Parrot_continuation_rewind_environment)
 
-    PMC * const to_ctx = PARROT_CONTINUATION(pmc)->to_ctx; 
+    PMC * const to_ctx = PARROT_CONTINUATION(pmc)->to_ctx;
 
     /* debug print before context is switched */
     if (Interp_trace_TEST(interp, PARROT_TRACE_SUB_CALL_FLAG)) {


More information about the parrot-commits mailing list