summaryrefslogtreecommitdiff
path: root/lstate.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-09-11 14:38:42 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-09-11 14:38:42 -0300
commit787a78f83e0484c9e9698189982e2f309808fae8 (patch)
tree0682eddf4ea5a49bf5078bac937a36f90057df57 /lstate.c
parent70c8a310925d6c41c3ef4f7feeae604a4c9a3a95 (diff)
downloadlua-787a78f83e0484c9e9698189982e2f309808fae8.tar.gz
lua-787a78f83e0484c9e9698189982e2f309808fae8.tar.bz2
lua-787a78f83e0484c9e9698189982e2f309808fae8.zip
new scheme for buffers
Diffstat (limited to 'lstate.c')
-rw-r--r--lstate.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lstate.c b/lstate.c
index f5d5b67c..1e35e467 100644
--- a/lstate.c
+++ b/lstate.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.c,v 1.35 2000/08/31 13:30:39 roberto Exp roberto $ 2** $Id: lstate.c,v 1.36 2000/09/05 19:33:32 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*/
@@ -35,9 +35,7 @@ lua_State *lua_newstate (int stacksize) {
35 L->strt.hash = NULL; 35 L->strt.hash = NULL;
36 L->udt.hash = NULL; 36 L->udt.hash = NULL;
37 L->Mbuffer = NULL; 37 L->Mbuffer = NULL;
38 L->Mbuffbase = 0;
39 L->Mbuffsize = 0; 38 L->Mbuffsize = 0;
40 L->Mbuffnext = 0;
41 L->rootproto = NULL; 39 L->rootproto = NULL;
42 L->rootcl = NULL; 40 L->rootcl = NULL;
43 L->roottable = NULL; 41 L->roottable = NULL;