aboutsummaryrefslogtreecommitdiff
path: root/inout.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1995-05-02 15:43:03 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1995-05-02 15:43:03 -0300
commit18ea2eff80c720632cb6a89d560c5cce2377df06 (patch)
tree67fc3acd282d134099b2f92657e191baeaff1277 /inout.h
parent8156604823aa487f4436d33fe89302598faab3db (diff)
downloadlua-18ea2eff80c720632cb6a89d560c5cce2377df06.tar.gz
lua-18ea2eff80c720632cb6a89d560c5cce2377df06.tar.bz2
lua-18ea2eff80c720632cb6a89d560c5cce2377df06.zip
calls to "lua_reportbug" changed to "lua_error", since
"lua_reportbug" is only an internal function to build debug information
Diffstat (limited to 'inout.h')
-rw-r--r--inout.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/inout.h b/inout.h
index 059ac0e8..ae84f133 100644
--- a/inout.h
+++ b/inout.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: inout.h,v 1.6 1994/11/21 21:41:09 roberto Stab roberto $ 2** $Id: inout.h,v 1.7 1994/12/20 21:20:36 roberto Exp roberto $
3*/ 3*/
4 4
5 5
@@ -8,6 +8,10 @@
8 8
9#include "types.h" 9#include "types.h"
10 10
11#ifndef MAXFUNCSTACK
12#define MAXFUNCSTACK 100
13#endif
14
11extern Word lua_linenumber; 15extern Word lua_linenumber;
12extern Bool lua_debug; 16extern Bool lua_debug;
13extern Word lua_debugline; 17extern Word lua_debugline;
@@ -18,7 +22,7 @@ char *lua_openstring (char *s);
18void lua_closestring (void); 22void lua_closestring (void);
19void lua_pushfunction (char *file, Word function); 23void lua_pushfunction (char *file, Word function);
20void lua_popfunction (void); 24void lua_popfunction (void);
21void lua_reportbug (char *s); 25void luaI_reportbug (char *s, int size);
22 26
23void lua_internaldofile (void); 27void lua_internaldofile (void);
24void lua_internaldostring (void); 28void lua_internaldostring (void);