aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--luadebug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/luadebug.h b/luadebug.h
index 4ffc4706..21a27a54 100644
--- a/luadebug.h
+++ b/luadebug.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luadebug.h,v 1.24 2002/02/08 22:42:41 roberto Exp roberto $ 2** $Id: luadebug.h,v 1.25 2002/03/11 12:45:00 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*/
@@ -28,7 +28,7 @@ LUA_API lua_Hook lua_setlinehook (lua_State *L, lua_Hook func);
28#define LUA_IDSIZE 60 28#define LUA_IDSIZE 60
29 29
30struct lua_Debug { 30struct lua_Debug {
31 const char *event; /* `call', `return' */ 31 const char *event; /* `call', `return', `line' */
32 const char *name; /* (n) */ 32 const char *name; /* (n) */
33 const char *namewhat; /* (n) `global', `tag method', `local', `field' */ 33 const char *namewhat; /* (n) `global', `tag method', `local', `field' */
34 const char *what; /* (S) `Lua' function, `C' function, Lua `main' */ 34 const char *what; /* (S) `Lua' function, `C' function, Lua `main' */