This commit is contained in:
Roberto Ierusalimschy 2009-03-02 13:34:23 -03:00
parent b403317325
commit facfcd497f
1 changed files with 2 additions and 2 deletions

4
lvm.c
View File

@ -1,5 +1,5 @@
/*
** $Id: lvm.c,v 2.80 2008/11/06 12:43:51 roberto Exp roberto $
** $Id: lvm.c,v 2.81 2009/02/16 20:09:28 roberto Exp roberto $
** Lua virtual machine
** See Copyright Notice in lua.h
*/
@ -399,7 +399,7 @@ void luaV_execute (lua_State *L) {
TValue *k;
reentry: /* entry point */
lua_assert(isLua(L->ci));
cl = &clvalue(L->ci->func)->l;
cl = &curr_func(L)->l;
base = L->base;
k = cl->p->k;
/* main loop of interpreter */