documentation for write barriers

This commit is contained in:
Roberto Ierusalimschy
2002-11-14 14:15:53 -02:00
parent a845a46cc8
commit 41fd639cab
8 changed files with 25 additions and 25 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lundump.c,v 1.43 2002/08/07 00:36:03 lhf Exp lhf $
** $Id: lundump.c,v 1.56 2002/10/25 21:30:41 roberto Exp roberto $
** load pre-compiled Lua chunks
** See Copyright Notice in lua.h
*/
@@ -154,7 +154,7 @@ static void LoadConstants (LoadState* S, Proto* f)
setnvalue(o,LoadNumber(S));
break;
case LUA_TSTRING:
setsvalue(o,LoadString(S));
setsvalue2n(o,LoadString(S));
break;
case LUA_TNIL:
setnilvalue(o);