perl.cvs.parrot
[Top] [All Lists]

[svn:parrot] r29905 - branches/pdd25cx/src/pmc

Subject: [svn:parrot] r29905 - branches/pdd25cx/src/pmc
From: coke@xxxxxxxxxxxx
Date: Wed, 30 Jul 2008 22:44:14 -0700 (PDT)
Newsgroups: perl.cvs.parrot

Author: coke
Date: Wed Jul 30 22:44:13 2008
New Revision: 29905

Modified:
   branches/pdd25cx/src/pmc/exception.pmc

Log:
hearing no object, apply patch from RT # 56786


Modified: branches/pdd25cx/src/pmc/exception.pmc
==============================================================================
--- branches/pdd25cx/src/pmc/exception.pmc      (original)
+++ branches/pdd25cx/src/pmc/exception.pmc      Wed Jul 30 22:44:13 2008
@@ -260,7 +260,7 @@
 
     VTABLE PMC *get_pmc_keyed(PMC *key) {
         STRING *s = key_string(INTERP, key);
-        return SELF.getprop(s);
+        return SELF.get_attr_str(s);
     }
 
 
@@ -389,7 +389,7 @@
 
     VTABLE void set_pmc_keyed(PMC *key, PMC *value) {
         STRING *s = key_string(INTERP, key);
-        SELF.setprop(s, value);
+        SELF.set_attr_str(s, value);
     }
 
 /*

<Prev in Thread] Current Thread [Next in Thread>
  • [svn:parrot] r29905 - branches/pdd25cx/src/pmc, coke <=