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

This commit is contained in:
Roberto Ierusalimschy 2006-03-09 15:15:48 -03:00
parent 44a9bd6a8c
commit 3d61c31e5a
3 changed files with 5 additions and 5 deletions

3
llex.c
View File

@ -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"

View File

@ -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"

View File

@ -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"