[svn:parrot] r38083 - branches/packfile_revamp/src/pmc
bacek at svn.parrot.org
bacek at svn.parrot.org
Sun Apr 12 09:54:08 UTC 2009
Author: bacek
Date: Sun Apr 12 09:54:07 2009
New Revision: 38083
URL: https://trac.parrot.org/parrot/changeset/38083
Log:
Fix PackfileAnnotations.get_keys_list to be proper METHOD.
Modified:
branches/packfile_revamp/src/pmc/packfileannotations.pmc
Modified: branches/packfile_revamp/src/pmc/packfileannotations.pmc
==============================================================================
--- branches/packfile_revamp/src/pmc/packfileannotations.pmc Sun Apr 12 09:53:52 2009 (r38082)
+++ branches/packfile_revamp/src/pmc/packfileannotations.pmc Sun Apr 12 09:54:07 2009 (r38083)
@@ -104,8 +104,9 @@
=cut
*/
- PMC *get_key_list() {
- PARROT_PACKFILEANNOTATIONS(SELF)->keys;
+ METHOD get_key_list() {
+ PMC * keys = PARROT_PACKFILEANNOTATIONS(SELF)->keys;
+ RETURN(PMC* keys);
}
More information about the parrot-commits
mailing list