lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 5d834bdf571ef3ee343b21fde2d49de1e4ea08b4
parent 67391a35daddf781ad2f74aa14e91fae760b2b1c
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Mon,  4 Oct 2004 16:00:50 -0300

function constants may include boolean values

Diffstat:
Mldump.c | 5++++-
Mlundump.c | 5++++-
2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/ldump.c b/ldump.c @@ -1,5 +1,5 @@ /* -** $Id: ldump.c,v 1.7 2004/06/09 21:03:53 lhf Exp lhf $ +** $Id: ldump.c,v 2.3 2004/07/09 18:24:41 roberto Exp $ ** save pre-compiled Lua chunks ** See Copyright Notice in lua.h */ @@ -121,6 +121,9 @@ static void DumpConstants(const Proto* f, DumpState* D) break; case LUA_TNIL: break; + case LUA_TBOOLEAN: + DumpByte(bvalue(o),D); + break; default: lua_assert(0); /* cannot happen */ break; diff --git a/lundump.c b/lundump.c @@ -1,5 +1,5 @@ /* -** $Id: lundump.c,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $ +** $Id: lundump.c,v 2.2 2004/04/30 20:13:38 roberto Exp $ ** load pre-compiled Lua chunks ** See Copyright Notice in lua.h */ @@ -179,6 +179,9 @@ static void LoadConstants (LoadState* S, Proto* f) case LUA_TNIL: setnilvalue(o); break; + case LUA_TBOOLEAN: + setbvalue(o, LoadByte(S)); + break; default: luaG_runerror(L,"bad constant type (%d) in %s",t,S->name); break;