diff options
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.234 2009/03/23 14:26:12 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.235 2009/04/08 18:04:33 roberto Exp roberto $ |
3 | ** Lua - An Extensible Extension Language | 3 | ** Lua - An Extensible Extension Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -367,7 +367,7 @@ struct lua_Debug { | |||
367 | int lastlinedefined; /* (S) */ | 367 | int lastlinedefined; /* (S) */ |
368 | char short_src[LUA_IDSIZE]; /* (S) */ | 368 | char short_src[LUA_IDSIZE]; /* (S) */ |
369 | /* private part */ | 369 | /* private part */ |
370 | int i_ci; /* active function */ | 370 | struct CallInfo *i_ci; /* active function */ |
371 | }; | 371 | }; |
372 | 372 | ||
373 | /* }====================================================================== */ | 373 | /* }====================================================================== */ |