aboutsummaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-20 15:15:33 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-20 15:15:33 -0300
commit099442c41f2cec6122690e6c8f2e11327613e6f6 (patch)
tree73599b274ea4a9b96906ff8160eeb4a524702a8e /ldo.c
parent27600fe87a6fafdfd4ddddeb390591fe749b480f (diff)
downloadlua-099442c41f2cec6122690e6c8f2e11327613e6f6.tar.gz
lua-099442c41f2cec6122690e6c8f2e11327613e6f6.tar.bz2
lua-099442c41f2cec6122690e6c8f2e11327613e6f6.zip
better separation between basic types
Diffstat (limited to 'ldo.c')
-rw-r--r--ldo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldo.c b/ldo.c
index 39ef5626..36304fb7 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 1.122 2001/02/02 16:23:20 roberto Exp roberto $ 2** $Id: ldo.c,v 1.123 2001/02/07 18:13:49 roberto Exp roberto $
3** Stack and Call structure of Lua 3** Stack and Call structure of Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -240,7 +240,7 @@ static void f_parser (lua_State *L, void *ud) {
240 240
241static int protectedparser (lua_State *L, ZIO *z, int bin) { 241static int protectedparser (lua_State *L, ZIO *z, int bin) {
242 struct SParser p; 242 struct SParser p;
243 mem_int old_blocks; 243 lu_mem old_blocks;
244 int status; 244 int status;
245 LUA_LOCK(L); 245 LUA_LOCK(L);
246 p.z = z; p.bin = bin; 246 p.z = z; p.bin = bin;