lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 3d61c31e5ad099952b20a31424a725c767150ba8
parent 44a9bd6a8cb63adeb66537eacf56f45c91a318b6
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Thu,  9 Mar 2006 15:15:25 -0300

'lparser.h' should not include 'ltable.h'

Diffstat:
Mllex.c | 3++-
Mlparser.c | 4++--
Mlparser.h | 3+--
3 files changed, 5 insertions(+), 5 deletions(-)

diff --git 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" diff --git a/lparser.c b/lparser.c @@ -1,5 +1,5 @@ /* -** $Id: lparser.c,v 2.39 2005/12/07 15:43:05 roberto Exp roberto $ +** $Id: lparser.c,v 2.40 2005/12/22 16:19:56 roberto Exp roberto $ ** Lua Parser ** See Copyright Notice in lua.h */ @@ -23,7 +23,7 @@ #include "lparser.h" #include "lstate.h" #include "lstring.h" - +#include "ltable.h" diff --git a/lparser.h b/lparser.h @@ -1,5 +1,5 @@ /* -** $Id: lparser.h,v 1.55 2005/04/25 19:24:10 roberto Exp roberto $ +** $Id: lparser.h,v 1.56 2005/10/03 14:02:40 roberto Exp roberto $ ** Lua Parser ** See Copyright Notice in lua.h */ @@ -9,7 +9,6 @@ #include "llimits.h" #include "lobject.h" -#include "ltable.h" #include "lzio.h"