diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-01 15:40:48 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-01 15:40:48 -0200 |
commit | e506b864cdc522ed7bf33e81d785fcfbd40a0368 (patch) | |
tree | c62865ee026136cd8784658110e8928127ad276c /ldo.c | |
parent | 9a231afa9721e87ae5f9790dedcb73cd58472a3f (diff) | |
download | lua-e506b864cdc522ed7bf33e81d785fcfbd40a0368.tar.gz lua-e506b864cdc522ed7bf33e81d785fcfbd40a0368.tar.bz2 lua-e506b864cdc522ed7bf33e81d785fcfbd40a0368.zip |
no need for tags in boxed values :-(
Diffstat (limited to 'ldo.c')
-rw-r--r-- | ldo.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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; |