This commit is contained in:
Roberto Ierusalimschy 2002-03-04 12:40:04 -03:00
parent 1b6315ba10
commit 51bf91a970
1 changed files with 2 additions and 2 deletions

4
lvm.c
View File

@ -1,5 +1,5 @@
/*
** $Id: lvm.c,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $
** $Id: lvm.c,v 1.216 2002/02/14 21:46:43 roberto Exp roberto $
** Lua virtual machine
** See Copyright Notice in lua.h
*/
@ -574,7 +574,7 @@ StkId luaV_execute (lua_State *L) {
loop = (ttype(ra+1) != LUA_TNIL);
}
else
luaD_error(L, "`for' value must be a table or function");
luaD_error(L, "`for' generator must be a table or function");
if (!loop)
pc -= j; /* undo jump */
break;