summaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-03-09 15:15:48 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-03-09 15:15:48 -0300
commit3d61c31e5ad099952b20a31424a725c767150ba8 (patch)
tree95ca5fbe95ec1a07bccd8bcef9bcddd00e8cdde7 /llex.c
parent44a9bd6a8cb63adeb66537eacf56f45c91a318b6 (diff)
downloadlua-github-3d61c31e5ad099952b20a31424a725c767150ba8.tar.gz
'lparser.h' should not include 'ltable.h'
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/llex.c b/llex.c
index 60f34ed8..6a8c158e 100644
--- a/llex.c
+++ b/llex.c
@@ -1,5 +1,5 @@
/*
-** $Id: llex.c,v 2.18 2006/01/23 20:06:19 roberto Exp roberto $
+** $Id: llex.c,v 2.19 2006/02/06 18:28:16 roberto Exp roberto $
** Lexical Analyzer
** See Copyright Notice in lua.h
*/
@@ -20,6 +20,7 @@
#include "lparser.h"
#include "lstate.h"
#include "lstring.h"
+#include "ltable.h"
#include "lzio.h"