aboutsummaryrefslogtreecommitdiff
path: root/lstate.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-05-11 17:08:20 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-05-11 17:08:20 -0300
commit705eae9fe49956ec8247cc8737b908e84d25bb9f (patch)
treea7b2ea9cba341ac3d4e18714f3b28a603dff1d2b /lstate.c
parent6eb1399a1c662f45ab5511a5e7d35fdb967ec076 (diff)
downloadlua-705eae9fe49956ec8247cc8737b908e84d25bb9f.tar.gz
lua-705eae9fe49956ec8247cc8737b908e84d25bb9f.tar.bz2
lua-705eae9fe49956ec8247cc8737b908e84d25bb9f.zip
there is no need for a size for Cblocks
Diffstat (limited to 'lstate.c')
-rw-r--r--lstate.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lstate.c b/lstate.c
index 931f0c5a..1a7fe22e 100644
--- a/lstate.c
+++ b/lstate.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.c,v 1.10 1999/04/13 19:30:51 roberto Exp roberto $ 2** $Id: lstate.c,v 1.11 1999/05/11 14:19: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*/
@@ -33,7 +33,6 @@ void lua_open (void)
33 L->Mbuffsize = 0; 33 L->Mbuffsize = 0;
34 L->Mbuffnext = 0; 34 L->Mbuffnext = 0;
35 L->Cblocks = NULL; 35 L->Cblocks = NULL;
36 L->sizeCblocks = 0;
37 L->numCblocks = 0; 36 L->numCblocks = 0;
38 L->debug = 0; 37 L->debug = 0;
39 L->callhook = NULL; 38 L->callhook = NULL;