aboutsummaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-10-13 20:10:45 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-10-13 20:10:45 -0200
commit2bb94d9e22f1f8ab2c00c9296a3920bebe4862bd (patch)
tree84213b4622c3513880a89221f79570d1a6e69714 /llex.c
parenta3235ad2702628dc3c1e4a6a90f69608cefc12e9 (diff)
downloadlua-2bb94d9e22f1f8ab2c00c9296a3920bebe4862bd.tar.gz
lua-2bb94d9e22f1f8ab2c00c9296a3920bebe4862bd.tar.bz2
lua-2bb94d9e22f1f8ab2c00c9296a3920bebe4862bd.zip
using bison instead of yacc; lparser.c renamed to lstx.c (to
avoid confusion with lparser.h...)
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/llex.c b/llex.c
index 3d843224..d8fb39a6 100644
--- a/llex.c
+++ b/llex.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.c,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $ 2** $Id: llex.c,v 1.2 1997/09/26 15:02:26 roberto Exp roberto $
3** Lexical Analizer 3** Lexical Analizer
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -13,7 +13,7 @@
13#include "lobject.h" 13#include "lobject.h"
14#include "lparser.h" 14#include "lparser.h"
15#include "lstring.h" 15#include "lstring.h"
16#include "ltokens.h" 16#include "lstx.h"
17#include "luadebug.h" 17#include "luadebug.h"
18#include "lzio.h" 18#include "lzio.h"
19 19