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 /lex.c | |
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)
Diffstat (limited to 'lex.c')
-rw-r--r-- | lex.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 | ||