From 71c716e5a88a6993369505c79cd1383ef27366c4 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 11 Mar 2002 09:45:00 -0300 Subject: avoid C identifiers beginning with '_' --- luadebug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'luadebug.h') diff --git a/luadebug.h b/luadebug.h index bf0a359d..4ffc4706 100644 --- a/luadebug.h +++ b/luadebug.h @@ -1,5 +1,5 @@ /* -** $Id: luadebug.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ +** $Id: luadebug.h,v 1.24 2002/02/08 22:42:41 roberto Exp roberto $ ** Debugging API ** See Copyright Notice in lua.h */ @@ -38,7 +38,7 @@ struct lua_Debug { int linedefined; /* (S) */ char short_src[LUA_IDSIZE]; /* (S) */ /* private part */ - int _ci; /* active function */ + int i_ci; /* active function */ }; -- cgit v1.2.3-55-g6feb