diff options
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 | ||