diff options
author | Lua Team <team@lua.org> | 2013-03-21 12:00:00 +0000 |
---|---|---|
committer | repogen <> | 2013-03-21 12:00:00 +0000 |
commit | dc27609467d2699ac9252e89d632432ac5f798f2 (patch) | |
tree | b934d79a77a76df417078dc6ac162bb0012708bb /src/lvm.c | |
parent | a101faf3e9db5b8b47cb0bcfb973b13d46ca304a (diff) | |
download | lua-github-5.2.2-rc4.tar.gz |
Diffstat (limited to 'src/lvm.c')
-rw-r--r-- | src/lvm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* -** $Id: lvm.c,v 2.154 2012/08/16 17:34:28 roberto Exp $ +** $Id: lvm.c,v 2.155 2013/03/16 21:10:18 roberto Exp $ ** Lua virtual machine ** See Copyright Notice in lua.h */ @@ -83,7 +83,7 @@ static void traceexec (lua_State *L) { if (counthook) L->hookcount = 1; /* undo decrement to zero */ ci->u.l.savedpc--; /* undo increment (resume will increment it again) */ - ci->callstatus |= CIST_HOOKYIELD; /* mark that it yieled */ + ci->callstatus |= CIST_HOOKYIELD; /* mark that it yielded */ ci->func = L->top - 1; /* protect stack below results */ luaD_throw(L, LUA_YIELD); } |