diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-21 19:41:09 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-21 19:41:09 -0200 |
commit | 52db68a600fbfbe1527250a114648da52a040247 (patch) | |
tree | 15b8ced5177b80f95d9a3e921f2a4820c2c146f1 /inout.h | |
parent | bba1ae427fa914d5b7e8fea7b3aa2ad91fb3a4f6 (diff) | |
download | lua-52db68a600fbfbe1527250a114648da52a040247.tar.gz lua-52db68a600fbfbe1527250a114648da52a040247.tar.bz2 lua-52db68a600fbfbe1527250a114648da52a040247.zip |
debug shows lines where functions were called
Diffstat (limited to 'inout.h')
-rw-r--r-- | inout.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,11 +1,12 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: inout.h,v 1.4 1994/11/03 22:34:29 roberto Exp roberto $ | 2 | ** $Id: inout.h,v 1.5 1994/11/08 20:06:15 roberto Exp roberto $ |
3 | */ | 3 | */ |
4 | 4 | ||
5 | 5 | ||
6 | #ifndef inout_h | 6 | #ifndef inout_h |
7 | #define inout_h | 7 | #define inout_h |
8 | 8 | ||
9 | |||
9 | extern int lua_linenumber; | 10 | extern int lua_linenumber; |
10 | extern int lua_debug; | 11 | extern int lua_debug; |
11 | extern int lua_debugline; | 12 | extern int lua_debugline; |
@@ -14,7 +15,7 @@ char *lua_openfile (char *fn); | |||
14 | void lua_closefile (void); | 15 | void lua_closefile (void); |
15 | char *lua_openstring (char *s); | 16 | char *lua_openstring (char *s); |
16 | void lua_closestring (void); | 17 | void lua_closestring (void); |
17 | int lua_pushfunction (char *file, int function); | 18 | void lua_pushfunction (char *file, int function); |
18 | void lua_popfunction (void); | 19 | void lua_popfunction (void); |
19 | void lua_reportbug (char *s); | 20 | void lua_reportbug (char *s); |
20 | 21 | ||