aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lvm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lvm.c b/lvm.c
index 20aaa723..8a0a2e4a 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 2.144 2011/10/07 20:45:19 roberto Exp roberto $ 2** $Id: lvm.c,v 2.145 2011/11/28 17:25:16 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*/
@@ -535,7 +535,7 @@ void luaV_execute (lua_State *L) {
535 (--L->hookcount == 0 || L->hookmask & LUA_MASKLINE)) { 535 (--L->hookcount == 0 || L->hookmask & LUA_MASKLINE)) {
536 Protect(traceexec(L)); 536 Protect(traceexec(L));
537 } 537 }
538 /* warning!! several calls may realloc the stack and invalidate `ra' */ 538 /* WARNING: several calls may realloc the stack and invalidate `ra' */
539 ra = RA(i); 539 ra = RA(i);
540 lua_assert(base == ci->u.l.base); 540 lua_assert(base == ci->u.l.base);
541 lua_assert(base <= L->top && L->top < L->stack + L->stacksize); 541 lua_assert(base <= L->top && L->top < L->stack + L->stacksize);