aboutsummaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
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 84c244e6..cf2948c6 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 1.207 2002/11/21 17:19:11 roberto Exp roberto $ 2** $Id: ldo.c,v 1.208 2002/11/22 17:16:52 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*/
@@ -246,7 +246,7 @@ StkId luaD_precall (lua_State *L, StkId func) {
246 ci->state = CI_C; /* a C function */ 246 ci->state = CI_C; /* a C function */
247 if (L->hookmask & LUA_MASKCALL) { 247 if (L->hookmask & LUA_MASKCALL) {
248 luaD_callhook(L, LUA_HOOKCALL, -1); 248 luaD_callhook(L, LUA_HOOKCALL, -1);
249 ci = L->ci; /* previous call may realocate `ci' */ 249 ci = L->ci; /* previous call may reallocate `ci' */
250 } 250 }
251 lua_unlock(L); 251 lua_unlock(L);
252#ifdef LUA_COMPATUPVALUES 252#ifdef LUA_COMPATUPVALUES