aboutsummaryrefslogtreecommitdiff
path: root/luadebug.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-03-07 15:09:25 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-03-07 15:09:25 -0300
commit6048c4f74d7d63d6c2f5a53cd8e4ee01f6702be9 (patch)
tree1f8fd00995288958a32ebd8f97863c5f1cb8f776 /luadebug.h
parent5e870f86a255988ca85eda795adc31063ec1ac70 (diff)
downloadlua-6048c4f74d7d63d6c2f5a53cd8e4ee01f6702be9.tar.gz
lua-6048c4f74d7d63d6c2f5a53cd8e4ee01f6702be9.tar.bz2
lua-6048c4f74d7d63d6c2f5a53cd8e4ee01f6702be9.zip
better way to link callinfo's and stack
Diffstat (limited to 'luadebug.h')
-rw-r--r--luadebug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/luadebug.h b/luadebug.h
index 5ffdbe03..f23216c5 100644
--- a/luadebug.h
+++ b/luadebug.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luadebug.h,v 1.17 2000/10/30 12:38:50 roberto Exp roberto $ 2** $Id: luadebug.h,v 1.18 2001/02/23 17:17:25 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*/
@@ -39,7 +39,7 @@ struct lua_Debug {
39 const l_char *source; /* (S) */ 39 const l_char *source; /* (S) */
40 l_char short_src[LUA_IDSIZE]; /* (S) */ 40 l_char short_src[LUA_IDSIZE]; /* (S) */
41 /* private part */ 41 /* private part */
42 struct lua_TObject *_func; /* active function */ 42 struct CallInfo *_ci; /* active function */
43}; 43};
44 44
45 45