From 024ed4218f923194c97bf1c8fccba4f598296ccb Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 12 Sep 2000 15:38:02 -0300 Subject: better name for source_id (short_src) --- luadebug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'luadebug.h') diff --git a/luadebug.h b/luadebug.h index f81496e1..c90e93b9 100644 --- a/luadebug.h +++ b/luadebug.h @@ -1,5 +1,5 @@ /* -** $Id: luadebug.h,v 1.13 2000/08/28 17:57:04 roberto Exp roberto $ +** $Id: luadebug.h,v 1.14 2000/09/11 20:29:27 roberto Exp roberto $ ** Debugging API ** See Copyright Notice in lua.h */ @@ -37,7 +37,7 @@ struct lua_Debug { int linedefined; /* (S) */ const char *what; /* (S) `Lua' function, `C' function, Lua `main' */ const char *source; /* (S) */ - char source_id[LUA_IDSIZE]; /* (S) */ + char short_src[LUA_IDSIZE]; /* (S) */ /* private part */ struct lua_TObject *_func; /* active function */ }; -- cgit v1.2.3-55-g6feb