aboutsummaryrefslogtreecommitdiff
path: root/luadebug.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-11 13:17:28 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-11 13:17:28 -0300
commit9e84bf18db779bea66947c1ca08db9bf8dc593c8 (patch)
treea476a4da5458de99679c3ca09fbd4e42da2d8360 /luadebug.h
parentdaf09c476fe375d8a9a47bc1294a1cd430290226 (diff)
downloadlua-9e84bf18db779bea66947c1ca08db9bf8dc593c8.tar.gz
lua-9e84bf18db779bea66947c1ca08db9bf8dc593c8.tar.bz2
lua-9e84bf18db779bea66947c1ca08db9bf8dc593c8.zip
still more debug information
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 ce69c50e..6944cc17 100644
--- a/luadebug.h
+++ b/luadebug.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luadebug.h,v 1.10 2000/03/30 17:19:48 roberto Exp roberto $ 2** $Id: luadebug.h,v 1.11 2000/08/08 20:42:07 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*/
@@ -34,7 +34,7 @@ struct lua_Debug {
34 const char *what; /* (S) `Lua' function, `C' function, Lua `main' */ 34 const char *what; /* (S) `Lua' function, `C' function, Lua `main' */
35 int currentline; /* (l) */ 35 int currentline; /* (l) */
36 const char *name; /* (n) */ 36 const char *name; /* (n) */
37 const char *namewhat; /* (n) global, tag method, local, field */ 37 const char *namewhat; /* (n) `global', `tag method', `local', `field' */
38 int nups; /* (u) number of upvalues */ 38 int nups; /* (u) number of upvalues */
39 lua_Object func; /* (f) function being executed */ 39 lua_Object func; /* (f) function being executed */
40 /* private part */ 40 /* private part */