aboutsummaryrefslogtreecommitdiff
path: root/inout.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-21 19:41:09 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-21 19:41:09 -0200
commit52db68a600fbfbe1527250a114648da52a040247 (patch)
tree15b8ced5177b80f95d9a3e921f2a4820c2c146f1 /inout.h
parentbba1ae427fa914d5b7e8fea7b3aa2ad91fb3a4f6 (diff)
downloadlua-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.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/inout.h b/inout.h
index 8155bbe4..57aa7b3e 100644
--- a/inout.h
+++ b/inout.h
@@ -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
9extern int lua_linenumber; 10extern int lua_linenumber;
10extern int lua_debug; 11extern int lua_debug;
11extern int lua_debugline; 12extern int lua_debugline;
@@ -14,7 +15,7 @@ char *lua_openfile (char *fn);
14void lua_closefile (void); 15void lua_closefile (void);
15char *lua_openstring (char *s); 16char *lua_openstring (char *s);
16void lua_closestring (void); 17void lua_closestring (void);
17int lua_pushfunction (char *file, int function); 18void lua_pushfunction (char *file, int function);
18void lua_popfunction (void); 19void lua_popfunction (void);
19void lua_reportbug (char *s); 20void lua_reportbug (char *s);
20 21