diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-03-11 09:45:00 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-03-11 09:45:00 -0300 |
commit | 71c716e5a88a6993369505c79cd1383ef27366c4 (patch) | |
tree | c8b32cf297e5a6faca854c527fd9ea2056f615db /luadebug.h | |
parent | 51ad2f11623c25874b6a0e721e0597df784068ff (diff) | |
download | lua-71c716e5a88a6993369505c79cd1383ef27366c4.tar.gz lua-71c716e5a88a6993369505c79cd1383ef27366c4.tar.bz2 lua-71c716e5a88a6993369505c79cd1383ef27366c4.zip |
avoid C identifiers beginning with '_'
Diffstat (limited to 'luadebug.h')
-rw-r--r-- | luadebug.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luadebug.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ | 2 | ** $Id: luadebug.h,v 1.24 2002/02/08 22:42:41 roberto Exp roberto $ |
3 | ** Debugging API | 3 | ** Debugging API |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -38,7 +38,7 @@ struct lua_Debug { | |||
38 | int linedefined; /* (S) */ | 38 | int linedefined; /* (S) */ |
39 | char short_src[LUA_IDSIZE]; /* (S) */ | 39 | char short_src[LUA_IDSIZE]; /* (S) */ |
40 | /* private part */ | 40 | /* private part */ |
41 | int _ci; /* active function */ | 41 | int i_ci; /* active function */ |
42 | }; | 42 | }; |
43 | 43 | ||
44 | 44 | ||