aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-11-03 18:41:05 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-11-03 18:41:05 -0200
commit6bb3e40a8d2cdb64a6ac1962d8748dd638a11721 (patch)
tree4b3e6753ff5da84af6a05d0bcdde1fe15101f6cb /lua.h
parent7612f7735d32e298774d5379e847afb5e2a978ad (diff)
downloadlua-6bb3e40a8d2cdb64a6ac1962d8748dd638a11721.tar.gz
lua-6bb3e40a8d2cdb64a6ac1962d8748dd638a11721.tar.bz2
lua-6bb3e40a8d2cdb64a6ac1962d8748dd638a11721.zip
'lua_Debug' not using 'CallInfo'
Diffstat (limited to '')
-rw-r--r--lua.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lua.h b/lua.h
index be99e14c..fe97e8a6 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.336 2017/07/27 13:36:54 roberto Exp roberto $ 2** $Id: lua.h,v 1.337 2017/11/02 11:28:56 roberto Exp roberto $
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,7 +456,8 @@ 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 struct CallInfo *i_ci; /* active function */ 459 int i_actf; /* active function */
460 lua_State *i_actL; /* where active function is active */
460}; 461};
461 462
462/* }====================================================================== */ 463/* }====================================================================== */