aboutsummaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-01-15 16:07:56 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-01-15 16:07:56 -0200
commit619edfd9e4c210bdfcfbf1e911d1760c53c4293f (patch)
treeb77eae0ab8c0fc1be3d3eea5e6514fc107afa8eb /llex.c
parenta04de4f0adc0b14aa4ad88136ef82f6e277653c7 (diff)
downloadlua-619edfd9e4c210bdfcfbf1e911d1760c53c4293f.tar.gz
lua-619edfd9e4c210bdfcfbf1e911d1760c53c4293f.tar.bz2
lua-619edfd9e4c210bdfcfbf1e911d1760c53c4293f.zip
details
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/llex.c b/llex.c
index c4b36d61..95c3ef1a 100644
--- a/llex.c
+++ b/llex.c
@@ -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