[svn:parrot] r40889 - branches/context_pmc3/src/pmc

bacek at svn.parrot.org bacek at svn.parrot.org
Mon Aug 31 09:45:00 UTC 2009


Author: bacek
Date: Mon Aug 31 09:45:00 2009
New Revision: 40889
URL: https://trac.parrot.org/parrot/changeset/40889

Log:
[cage] Make codetest happy.

Modified:
   branches/context_pmc3/src/pmc/sub.pmc

Modified: branches/context_pmc3/src/pmc/sub.pmc
==============================================================================
--- branches/context_pmc3/src/pmc/sub.pmc	Mon Aug 31 09:43:54 2009	(r40888)
+++ branches/context_pmc3/src/pmc/sub.pmc	Mon Aug 31 09:45:00 2009	(r40889)
@@ -325,11 +325,9 @@
         else {
             /* autoclose */
             PMC *c;
-            for (
-                    c = context;
-                    PMC_IS_NULL(Parrot_pcc_get_outer_ctx(interp, c));
-                    c = Parrot_pcc_get_outer_ctx(interp, c)
-            ) {
+            for (c = context;
+                 PMC_IS_NULL(Parrot_pcc_get_outer_ctx(interp, c));
+                 c = Parrot_pcc_get_outer_ctx(interp, c)) {
 
                 PMC         *outer_pmc;
                 Parrot_Sub_attributes *current_sub, *outer_sub;


More information about the parrot-commits mailing list