[svn:parrot] r40868 - in branches/context_pmc3: include/parrot src/pmc

bacek at svn.parrot.org bacek at svn.parrot.org
Sun Aug 30 11:16:15 UTC 2009


Author: bacek
Date: Sun Aug 30 11:16:15 2009
New Revision: 40868
URL: https://trac.parrot.org/parrot/changeset/40868

Log:
[cage] Drop redundant struct keyword

Modified:
   branches/context_pmc3/include/parrot/interpreter.h
   branches/context_pmc3/src/pmc/lexpad.pmc

Modified: branches/context_pmc3/include/parrot/interpreter.h
==============================================================================
--- branches/context_pmc3/include/parrot/interpreter.h	Sun Aug 30 11:15:50 2009	(r40867)
+++ branches/context_pmc3/include/parrot/interpreter.h	Sun Aug 30 11:16:15 2009	(r40868)
@@ -231,7 +231,7 @@
 
 /* The actual interpreter structure */
 struct parrot_interp_t {
-    struct PMC           *ctx;                /* current Context */
+    PMC           *ctx;                       /* current Context */
 
     struct Arenas *arena_base;                /* Pointer to this interpreter's
                                                * arena */

Modified: branches/context_pmc3/src/pmc/lexpad.pmc
==============================================================================
--- branches/context_pmc3/src/pmc/lexpad.pmc	Sun Aug 30 11:15:50 2009	(r40867)
+++ branches/context_pmc3/src/pmc/lexpad.pmc	Sun Aug 30 11:16:15 2009	(r40868)
@@ -82,7 +82,7 @@
     }
 
     VTABLE void set_pointer(void *ctx) {
-        SET_ATTR_ctx(INTERP, SELF, (struct PMC *)ctx);
+        SET_ATTR_ctx(INTERP, SELF, (PMC *)ctx);
     }
 
     VTABLE INTVAL elements() {


More information about the parrot-commits mailing list