diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-11-07 11:25:26 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-11-07 11:25:26 -0200 |
commit | ad0704e40cc7b3135fedc6d40a522addb039e090 (patch) | |
tree | 4bcd104de4941239e09316efcee5e5e3566b8b81 /lua.h | |
parent | 5a3f26f85558bedfa439027919d928abfdd00b6d (diff) | |
download | lua-ad0704e40cc7b3135fedc6d40a522addb039e090.tar.gz lua-ad0704e40cc7b3135fedc6d40a522addb039e090.tar.bz2 lua-ad0704e40cc7b3135fedc6d40a522addb039e090.zip |
back to 'CallInfo' (no gains with its removal)
Diffstat (limited to '')
-rw-r--r-- | lua.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.337 2017/11/02 11:28:56 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.337 2017/11/02 11:28:56 roberto Exp $ |
3 | ** Lua - A Scripting Language | 3 | ** Lua - A Scripting 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 |
@@ -456,8 +456,7 @@ struct lua_Debug { | |||
456 | char istailcall; /* (t) */ | 456 | char istailcall; /* (t) */ |
457 | char short_src[LUA_IDSIZE]; /* (S) */ | 457 | char short_src[LUA_IDSIZE]; /* (S) */ |
458 | /* private part */ | 458 | /* private part */ |
459 | int i_actf; /* active function */ | 459 | struct CallInfo *i_ci; /* active function */ |
460 | lua_State *i_actL; /* where active function is active */ | ||
461 | }; | 460 | }; |
462 | 461 | ||
463 | /* }====================================================================== */ | 462 | /* }====================================================================== */ |