diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-02-07 12:14:40 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-02-07 12:14:40 -0200 |
commit | 56fb06b6f5eaea4f3dba32af1cc476a99b678497 (patch) | |
tree | 6c2efb0955985fa49ea175ad995475083ae1ab34 | |
parent | 995a9f71885fc1979a9a23edc3c34e19b36e7653 (diff) | |
download | lua-56fb06b6f5eaea4f3dba32af1cc476a99b678497.tar.gz lua-56fb06b6f5eaea4f3dba32af1cc476a99b678497.tar.bz2 lua-56fb06b6f5eaea4f3dba32af1cc476a99b678497.zip |
"lua_debug" now is exported through debug interface (luadebug.h)
-rw-r--r-- | inout.c | 3 | ||||
-rw-r--r-- | inout.h | 3 | ||||
-rw-r--r-- | lex.c | 3 |
3 files changed, 4 insertions, 5 deletions
@@ -5,7 +5,7 @@ | |||
5 | ** Also provides some predefined lua functions. | 5 | ** Also provides some predefined lua functions. |
6 | */ | 6 | */ |
7 | 7 | ||
8 | char *rcs_inout="$Id: inout.c,v 2.27 1996/01/26 14:05:28 roberto Exp roberto $"; | 8 | char *rcs_inout="$Id: inout.c,v 2.28 1996/01/26 16:52:47 roberto Exp roberto $"; |
9 | 9 | ||
10 | #include <stdio.h> | 10 | #include <stdio.h> |
11 | #include <stdlib.h> | 11 | #include <stdlib.h> |
@@ -29,7 +29,6 @@ char *rcs_inout="$Id: inout.c,v 2.27 1996/01/26 14:05:28 roberto Exp roberto $"; | |||
29 | 29 | ||
30 | /* Exported variables */ | 30 | /* Exported variables */ |
31 | Word lua_linenumber; | 31 | Word lua_linenumber; |
32 | Bool lua_debug = 0; | ||
33 | char *lua_parsedfile; | 32 | char *lua_parsedfile; |
34 | 33 | ||
35 | 34 | ||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: inout.h,v 1.11 1996/01/22 17:40:00 roberto Exp roberto $ | 2 | ** $Id: inout.h,v 1.12 1996/01/26 14:05:28 roberto Exp roberto $ |
3 | */ | 3 | */ |
4 | 4 | ||
5 | 5 | ||
@@ -10,7 +10,6 @@ | |||
10 | 10 | ||
11 | 11 | ||
12 | extern Word lua_linenumber; | 12 | extern Word lua_linenumber; |
13 | extern Bool lua_debug; | ||
14 | extern Word lua_debugline; | 13 | extern Word lua_debugline; |
15 | extern char *lua_parsedfile; | 14 | extern char *lua_parsedfile; |
16 | 15 | ||
@@ -1,4 +1,4 @@ | |||
1 | char *rcs_lex = "$Id: lex.c,v 2.21 1995/11/16 20:46:24 roberto Exp roberto $"; | 1 | char *rcs_lex = "$Id: lex.c,v 2.22 1995/12/21 16:14:04 roberto Exp roberto $"; |
2 | 2 | ||
3 | 3 | ||
4 | #include <ctype.h> | 4 | #include <ctype.h> |
@@ -10,6 +10,7 @@ char *rcs_lex = "$Id: lex.c,v 2.21 1995/11/16 20:46:24 roberto Exp roberto $"; | |||
10 | #include "table.h" | 10 | #include "table.h" |
11 | #include "opcode.h" | 11 | #include "opcode.h" |
12 | #include "inout.h" | 12 | #include "inout.h" |
13 | #include "luadebug.h" | ||
13 | #include "parser.h" | 14 | #include "parser.h" |
14 | #include "ugly.h" | 15 | #include "ugly.h" |
15 | 16 | ||