avoid C identifiers beginning with '_'

This commit is contained in:
Roberto Ierusalimschy
2002-03-11 09:45:00 -03:00
parent 51ad2f1162
commit 71c716e5a8
7 changed files with 31 additions and 31 deletions

View File

@@ -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 */
};