aboutsummaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
Diffstat (limited to 'ldo.c')
-rw-r--r--ldo.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ldo.c b/ldo.c
index 67b8f5c5..d98ab5bd 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 1.118 2001/01/29 15:35:17 roberto Exp roberto $ 2** $Id: ldo.c,v 1.119 2001/01/29 19:34:02 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*/
@@ -172,7 +172,6 @@ void luaD_call (lua_State *L, StkId func, int nResults) {
172 setclvalue(func, tm); /* tag method is the new function to be called */ 172 setclvalue(func, tm); /* tag method is the new function to be called */
173 } 173 }
174 cl = clvalue(func); 174 cl = clvalue(func);
175 ci.v.ttype = LUA_TMARK;
176 ci.func = cl; 175 ci.func = cl;
177 setivalue(func, &ci); 176 setivalue(func, &ci);
178 callhook = L->callhook; 177 callhook = L->callhook;