aboutsummaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-03-16 18:10:18 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-03-16 18:10:18 -0300
commit75250a237cb620ef44b344c07398b8a27bdcddc2 (patch)
tree45ef545008a6a6a9bd0fcc1eb1f732194d7b0315 /lvm.c
parent437a49be5eb312b97645a3c342ab90746c2674c4 (diff)
downloadlua-75250a237cb620ef44b344c07398b8a27bdcddc2.tar.gz
lua-75250a237cb620ef44b344c07398b8a27bdcddc2.tar.bz2
lua-75250a237cb620ef44b344c07398b8a27bdcddc2.zip
typos in comments
Diffstat (limited to 'lvm.c')
-rw-r--r--lvm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lvm.c b/lvm.c
index db8c93ba..04554a2d 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 2.153 2012/08/14 18:12:34 roberto Exp roberto $ 2** $Id: lvm.c,v 2.154 2012/08/16 17:34:28 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -83,7 +83,7 @@ static void traceexec (lua_State *L) {
83 if (counthook) 83 if (counthook)
84 L->hookcount = 1; /* undo decrement to zero */ 84 L->hookcount = 1; /* undo decrement to zero */
85 ci->u.l.savedpc--; /* undo increment (resume will increment it again) */ 85 ci->u.l.savedpc--; /* undo increment (resume will increment it again) */
86 ci->callstatus |= CIST_HOOKYIELD; /* mark that it yieled */ 86 ci->callstatus |= CIST_HOOKYIELD; /* mark that it yielded */
87 ci->func = L->top - 1; /* protect stack below results */ 87 ci->func = L->top - 1; /* protect stack below results */
88 luaD_throw(L, LUA_YIELD); 88 luaD_throw(L, LUA_YIELD);
89 } 89 }