aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ldebug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldebug.c b/ldebug.c
index 3f2e5f78..47a83587 100644
--- a/ldebug.c
+++ b/ldebug.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldebug.c,v 1.18 2000/05/08 20:49:05 roberto Exp roberto $ 2** $Id: ldebug.c,v 1.19 2000/05/12 19:49:18 roberto Exp roberto $
3** Debug Interface 3** Debug Interface
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -125,7 +125,7 @@ int lua_setlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v) {
125 Proto *fp = getluaproto(f); 125 Proto *fp = getluaproto(f);
126 if (!fp) return 0; /* `f' is not a Lua function? */ 126 if (!fp) return 0; /* `f' is not a Lua function? */
127 v->name = luaF_getlocalname(fp, v->index, lua_currentline(L, f)); 127 v->name = luaF_getlocalname(fp, v->index, lua_currentline(L, f));
128 if (!v->name) return 0; 128 if (!v->name || v->name[0] == '*') return 0; /* `*' starts private locals */
129 LUA_ASSERT(L, ttype(f+1) == TAG_LINE, ""); 129 LUA_ASSERT(L, ttype(f+1) == TAG_LINE, "");
130 *((f+2)+(v->index-1)) = *v->value; 130 *((f+2)+(v->index-1)) = *v->value;
131 return 1; 131 return 1;