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 f81496e1..c90e93b9 100644
--- a/luadebug.h
+++ b/luadebug.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luadebug.h,v 1.13 2000/08/28 17:57:04 roberto Exp roberto $ 2** $Id: luadebug.h,v 1.14 2000/09/11 20:29:27 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*/
@@ -37,7 +37,7 @@ struct lua_Debug {
37 int linedefined; /* (S) */ 37 int linedefined; /* (S) */
38 const char *what; /* (S) `Lua' function, `C' function, Lua `main' */ 38 const char *what; /* (S) `Lua' function, `C' function, Lua `main' */
39 const char *source; /* (S) */ 39 const char *source; /* (S) */
40 char source_id[LUA_IDSIZE]; /* (S) */ 40 char short_src[LUA_IDSIZE]; /* (S) */
41 /* private part */ 41 /* private part */
42 struct lua_TObject *_func; /* active function */ 42 struct lua_TObject *_func; /* active function */
43}; 43};