mirror of
https://github.com/lua/lua
synced 2024-11-22 21:01:26 +03:00
cannot change value of private locals (used to implement `for')
This commit is contained in:
parent
8714cc02d6
commit
9e1f94fc1c
4
ldebug.c
4
ldebug.c
@ -1,5 +1,5 @@
|
||||
/*
|
||||
** $Id: ldebug.c,v 1.18 2000/05/08 20:49:05 roberto Exp roberto $
|
||||
** $Id: ldebug.c,v 1.19 2000/05/12 19:49:18 roberto Exp roberto $
|
||||
** Debug Interface
|
||||
** See Copyright Notice in lua.h
|
||||
*/
|
||||
@ -125,7 +125,7 @@ int lua_setlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v) {
|
||||
Proto *fp = getluaproto(f);
|
||||
if (!fp) return 0; /* `f' is not a Lua function? */
|
||||
v->name = luaF_getlocalname(fp, v->index, lua_currentline(L, f));
|
||||
if (!v->name) return 0;
|
||||
if (!v->name || v->name[0] == '*') return 0; /* `*' starts private locals */
|
||||
LUA_ASSERT(L, ttype(f+1) == TAG_LINE, "");
|
||||
*((f+2)+(v->index-1)) = *v->value;
|
||||
return 1;
|
||||
|
Loading…
Reference in New Issue
Block a user