Skip to content

Commit

Permalink
Stringification of proto should end in ().
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.parrot.org/parrot/branches/rep6object@38516 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
jonathan committed May 6, 2009
1 parent 1cca895 commit b3cae36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pmc/protoobject.pmc
Expand Up @@ -278,7 +278,7 @@ stringification.
} }
else { else {
PMC *longname = VTABLE_getprop(interp, SELF, CONST_STRING(interp, "longname")); PMC *longname = VTABLE_getprop(interp, SELF, CONST_STRING(interp, "longname"));
return VTABLE_get_string(interp, longname); /* concat () */ return Parrot_str_concat(interp, VTABLE_get_string(interp, longname), CONST_STRING(interp, "()"), 0);
} }
} }


Expand Down

0 comments on commit b3cae36

Please sign in to comment.