details (remove of some extra spaces)

This commit is contained in:
Roberto Ierusalimschy
2012-08-14 15:12:34 -03:00
parent 233eac4d3a
commit 53480f1163
4 changed files with 11 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lcode.c,v 2.59 2011/08/15 19:41:58 roberto Exp roberto $
** $Id: lcode.c,v 2.60 2011/08/30 16:26:41 roberto Exp roberto $
** Code generator for Lua
** See Copyright Notice in lua.h
*/
@@ -426,7 +426,7 @@ static void discharge2reg (FuncState *fs, expdesc *e, int reg) {
luaK_nil(fs, reg, 1);
break;
}
case VFALSE: case VTRUE: {
case VFALSE: case VTRUE: {
luaK_codeABC(fs, OP_LOADBOOL, reg, e->k == VTRUE, 0);
break;
}