summaryrefslogtreecommitdiff
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
parent44a9bd6a8cb63adeb66537eacf56f45c91a318b6 (diff)
downloadlua-3d61c31e5ad099952b20a31424a725c767150ba8.tar.gz
lua-3d61c31e5ad099952b20a31424a725c767150ba8.tar.bz2
lua-3d61c31e5ad099952b20a31424a725c767150ba8.zip
'lparser.h' should not include 'ltable.h'
-rw-r--r--llex.c3
-rw-r--r--lparser.c4
-rw-r--r--lparser.h3
3 files changed, 5 insertions, 5 deletions
diff --git a/llex.c b/llex.c
index 60f34ed8..6a8c158e 100644
--- a/llex.c
+++ b/llex.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.c,v 2.18 2006/01/23 20:06:19 roberto Exp roberto $ 2** $Id: llex.c,v 2.19 2006/02/06 18:28:16 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*/
@@ -20,6 +20,7 @@
20#include "lparser.h" 20#include "lparser.h"
21#include "lstate.h" 21#include "lstate.h"
22#include "lstring.h" 22#include "lstring.h"
23#include "ltable.h"
23#include "lzio.h" 24#include "lzio.h"
24 25
25 26
diff --git a/lparser.c b/lparser.c
index 39619125..3ae4ad4d 100644
--- a/lparser.c
+++ b/lparser.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lparser.c,v 2.39 2005/12/07 15:43:05 roberto Exp roberto $ 2** $Id: lparser.c,v 2.40 2005/12/22 16:19:56 roberto Exp roberto $
3** Lua Parser 3** Lua Parser
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -23,7 +23,7 @@
23#include "lparser.h" 23#include "lparser.h"
24#include "lstate.h" 24#include "lstate.h"
25#include "lstring.h" 25#include "lstring.h"
26 26#include "ltable.h"
27 27
28 28
29 29
diff --git a/lparser.h b/lparser.h
index 35bdaf47..7e1d487d 100644
--- a/lparser.h
+++ b/lparser.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lparser.h,v 1.55 2005/04/25 19:24:10 roberto Exp roberto $ 2** $Id: lparser.h,v 1.56 2005/10/03 14:02:40 roberto Exp roberto $
3** Lua Parser 3** Lua Parser
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -9,7 +9,6 @@
9 9
10#include "llimits.h" 10#include "llimits.h"
11#include "lobject.h" 11#include "lobject.h"
12#include "ltable.h"
13#include "lzio.h" 12#include "lzio.h"
14 13
15 14