summaryrefslogtreecommitdiff
path: root/src/lvm.c
diff options
context:
space:
mode:
authorLua Team <team@lua.org>2013-03-21 12:00:00 +0000
committerrepogen <>2013-03-21 12:00:00 +0000
commitdc27609467d2699ac9252e89d632432ac5f798f2 (patch)
treeb934d79a77a76df417078dc6ac162bb0012708bb /src/lvm.c
parenta101faf3e9db5b8b47cb0bcfb973b13d46ca304a (diff)
downloadlua-github-5.2.2-rc4.tar.gz
Diffstat (limited to 'src/lvm.c')
-rw-r--r--src/lvm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lvm.c b/src/lvm.c
index 9713baf5..657d5c45 100644
--- a/src/lvm.c
+++ b/src/lvm.c
@@ -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);
}