diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-01-15 16:07:56 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-01-15 16:07:56 -0200 |
commit | 619edfd9e4c210bdfcfbf1e911d1760c53c4293f (patch) | |
tree | b77eae0ab8c0fc1be3d3eea5e6514fc107afa8eb | |
parent | a04de4f0adc0b14aa4ad88136ef82f6e277653c7 (diff) | |
download | lua-619edfd9e4c210bdfcfbf1e911d1760c53c4293f.tar.gz lua-619edfd9e4c210bdfcfbf1e911d1760c53c4293f.tar.bz2 lua-619edfd9e4c210bdfcfbf1e911d1760c53c4293f.zip |
details
-rw-r--r-- | llex.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.c,v 1.73 2001/01/10 16:40:56 roberto Exp roberto $ | 2 | ** $Id: llex.c,v 1.74 2001/01/10 17:41:50 roberto Exp roberto $ |
3 | ** Lexical Analyzer | 3 | ** Lexical Analyzer |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -12,13 +12,10 @@ | |||
12 | #include "lua.h" | 12 | #include "lua.h" |
13 | 13 | ||
14 | #include "llex.h" | 14 | #include "llex.h" |
15 | #include "lmem.h" | ||
16 | #include "lobject.h" | 15 | #include "lobject.h" |
17 | #include "lparser.h" | 16 | #include "lparser.h" |
18 | #include "lstate.h" | 17 | #include "lstate.h" |
19 | #include "lstring.h" | 18 | #include "lstring.h" |
20 | #include "ltable.h" | ||
21 | #include "luadebug.h" | ||
22 | #include "lzio.h" | 19 | #include "lzio.h" |
23 | 20 | ||
24 | 21 | ||