diff options
-rw-r--r-- | lstate.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.c,v 1.16 1999/11/10 15:39:35 roberto Exp roberto $ | 2 | ** $Id: lstate.c,v 1.17 1999/11/22 13:12:07 roberto Exp roberto $ |
3 | ** Global State | 3 | ** Global State |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -51,8 +51,8 @@ lua_State *lua_newstate (void) { | |||
51 | luaX_init(L); | 51 | luaX_init(L); |
52 | luaT_init(L); | 52 | luaT_init(L); |
53 | luaB_predefine(L); | 53 | luaB_predefine(L); |
54 | return L; | ||
55 | L->GCthreshold = L->nblocks*4; | 54 | L->GCthreshold = L->nblocks*4; |
55 | return L; | ||
56 | } | 56 | } |
57 | 57 | ||
58 | 58 | ||