From 1f691a4fcd32b706c79e4c8cbff17c6ae985bc34 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 28 Jan 2000 14:53:00 -0200 Subject: renaming of some opcodes and fields --- ldebug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ldebug.c') diff --git a/ldebug.c b/ldebug.c index 48694847..a28b8ff9 100644 --- a/ldebug.c +++ b/ldebug.c @@ -1,5 +1,5 @@ /* -** $Id: ldebug.c,v 1.5 2000/01/19 12:00:45 roberto Exp roberto $ +** $Id: ldebug.c,v 1.6 2000/01/25 13:57:18 roberto Exp roberto $ ** Debug Interface ** See Copyright Notice in lua.h */ @@ -94,7 +94,7 @@ static const char *luaG_getname (lua_State *L, const char **name, StkId top) { if (ttype(f) == LUA_T_LCLMARK) f = protovalue(f); LUA_ASSERT(L, ttype(f) == LUA_T_LMARK, "must be a Lua function"); - *name = tfvalue(f)->strcnst[i]->str; + *name = tfvalue(f)->kstr[i]->str; return luaO_typename(f+2); } } -- cgit v1.2.3-55-g6feb