Skip to content
This repository was archived by the owner on Jun 9, 2018. It is now read-only.

Commit 03a2fb5

Browse files
committed
s/key_append/Parrot_key_append/
s/key_new_cstring/Parrot_key_new_cstring/
1 parent 6394a0e commit 03a2fb5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

dynext/pmc/luabytecode.pmc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ static STRING* _get_string(Interp *interp)
118118

119119
static PMC * _new_lua(Interp *interp, const char *name)
120120
{
121-
PMC * const key = key_append(interp,
122-
key_new_cstring(interp, "Lua"),
123-
key_new_cstring(interp, name));
121+
PMC * const key = Parrot_key_append(interp,
122+
Parrot_key_new_cstring(interp, "Lua"),
123+
Parrot_key_new_cstring(interp, name));
124124
PMC * const class_object = Parrot_oo_get_class(interp, key);
125125
if (PMC_IS_NULL(class_object))
126126
Parrot_ex_throw_from_c_args(interp, NULL, EXCEPTION_ILL_INHERIT,

dynext/pmc/luathread.pmc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ Raises an exception. Use C<init_pmc()>.
6767

6868
*/
6969
VTABLE void init_pmc(PMC *sub) {
70-
PMC * const key = key_append(interp,
71-
key_new_cstring(interp, "Parrot"),
72-
key_new_cstring(interp, "Coroutine"));
70+
PMC * const key = Parrot_key_append(interp,
71+
Parrot_key_new_cstring(interp, "Parrot"),
72+
Parrot_key_new_cstring(interp, "Coroutine"));
7373
PMC * const classobj = Parrot_oo_get_class(interp, key);
7474
PMC *init_args;
7575

0 commit comments

Comments
 (0)