elua: alignment

This commit is contained in:
Daniel Kolesa 2014-06-11 11:15:11 +01:00
parent cd29d76ce5
commit 0f4e617e9f
1 changed files with 4 additions and 4 deletions

View File

@ -306,12 +306,12 @@ elua_build_args(lua_State *L)
int nargs = lua_gettop(L), n = 0, i;
for (i = 1; i <= nargs; ++i)
{
lua_pushliteral(L, "'"); ++n;
lua_pushvalue(L, i); ++n;
lua_pushliteral(L, "'"); ++n;
lua_pushliteral(L, "'"); ++n;
lua_pushvalue(L, i); ++n;
lua_pushliteral(L, "'"); ++n;
if (i != nargs)
{
lua_pushliteral(L, " "); ++n;
lua_pushliteral(L, " "); ++n;
}
}
lua_concat(L, n);