diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-03-04 18:23:39 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-03-04 18:23:39 -0300 |
commit | 5a8bb00df443dfdb5708689f32c64e90f2557bf8 (patch) | |
tree | f0328ef79978ce9bd8ceb63fdef2299b74c87490 /luadebug.h | |
parent | 677188de8aa0c4ed49a3db570f0c9ee7cd641ddc (diff) | |
download | lua-5a8bb00df443dfdb5708689f32c64e90f2557bf8.tar.gz lua-5a8bb00df443dfdb5708689f32c64e90f2557bf8.tar.bz2 lua-5a8bb00df443dfdb5708689f32c64e90f2557bf8.zip |
storing chunk "sources" instead of "filenames".
Diffstat (limited to 'luadebug.h')
-rw-r--r-- | luadebug.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luadebug.h,v 1.4 1999/01/15 13:11:22 roberto Exp roberto $ | 2 | ** $Id: luadebug.h,v 1.5 1999/02/04 17:47:59 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 | */ |
@@ -17,7 +17,7 @@ typedef void (*lua_LHFunction) (int line); | |||
17 | typedef void (*lua_CHFunction) (lua_Function func, char *file, int line); | 17 | typedef void (*lua_CHFunction) (lua_Function func, char *file, int line); |
18 | 18 | ||
19 | lua_Function lua_stackedfunction (int level); | 19 | lua_Function lua_stackedfunction (int level); |
20 | void lua_funcinfo (lua_Object func, char **filename, int *linedefined); | 20 | void lua_funcinfo (lua_Object func, char **source, int *linedefined); |
21 | int lua_currentline (lua_Function func); | 21 | int lua_currentline (lua_Function func); |
22 | char *lua_getobjname (lua_Object o, char **name); | 22 | char *lua_getobjname (lua_Object o, char **name); |
23 | 23 | ||