From a7c9e45c64a4bff9bdaf0d1177509bdd00fc53f7 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 11 Sep 2006 11:07:24 -0300 Subject: avoid trailing white spaces --- ltests.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ltests.c') diff --git a/ltests.c b/ltests.c index 151e1f4c..665b5d90 100644 --- a/ltests.c +++ b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 2.37 2006/06/05 19:35:57 roberto Exp roberto $ +** $Id: ltests.c,v 2.38 2006/07/11 15:53:29 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -399,7 +399,7 @@ static char *buildop (Proto *p, int pc, char *buff) { const char *name = luaP_opnames[o]; int line = getline(p, pc); sprintf(buff, "(%4d) %4d - ", line, pc); - switch (getOpMode(o)) { + switch (getOpMode(o)) { case iABC: sprintf(buff+strlen(buff), "%-12s%4d %4d %4d", name, GETARG_A(i), GETARG_B(i), GETARG_C(i)); @@ -581,7 +581,7 @@ static int table_query (lua_State *L) { else if (i < t->sizearray) { lua_pushinteger(L, i); pushobject(L, &t->array[i]); - lua_pushnil(L); + lua_pushnil(L); } else if ((i -= t->sizearray) < sizenode(t)) { if (!ttisnil(gval(gnode(t, i))) || @@ -821,7 +821,7 @@ static int getnum_aux (lua_State *L, const char **pc) { while (isdigit(cast_int(**pc))) res = res*10 + (*(*pc)++) - '0'; return sig*res; } - + static const char *getname_aux (char *buff, const char **pc) { int i = 0; skip(pc); -- cgit v1.2.3-55-g6feb