[svn:parrot] r36503 - trunk/languages/lua/src/pmc
fperrad at svn.parrot.org
fperrad at svn.parrot.org
Mon Feb 9 20:09:59 UTC 2009
Author: fperrad
Date: Mon Feb 9 20:09:58 2009
New Revision: 36503
URL: https://trac.parrot.org/parrot/changeset/36503
Log:
[Lua] fix line length
Modified:
trunk/languages/lua/src/pmc/luathread.pmc
Modified: trunk/languages/lua/src/pmc/luathread.pmc
==============================================================================
--- trunk/languages/lua/src/pmc/luathread.pmc Mon Feb 9 18:34:28 2009 (r36502)
+++ trunk/languages/lua/src/pmc/luathread.pmc Mon Feb 9 20:09:58 2009 (r36503)
@@ -74,7 +74,8 @@
VTABLE void init_pmc(PMC *sub) {
PMC * const classobj = Parrot_oo_get_class_str(INTERP,
Parrot_str_new_constant(INTERP, "Parrot::Coroutine"));
- Parrot_LuaThread_attributes * const t = mem_allocate_zeroed_typed(Parrot_LuaThread_attributes);
+ Parrot_LuaThread_attributes * const t =
+ mem_allocate_zeroed_typed(Parrot_LuaThread_attributes);
PMC *init_args;
if (PMC_IS_NULL(classobj))
More information about the parrot-commits
mailing list