aboutsummaryrefslogtreecommitdiff
path: root/luadebug.h
diff options
context:
space:
mode:
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 */