From ff91b355f451c7b7fc286d8ca9bc8613096f497d Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 3 Jun 2002 11:09:57 -0300 Subject: no more use of stdio inside the core (except for `tostring'...) --- lparser.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lparser.c') diff --git a/lparser.c b/lparser.c index 3afe5945..805db329 100644 --- a/lparser.c +++ b/lparser.c @@ -1,11 +1,10 @@ /* -** $Id: lparser.c,v 1.183 2002/05/14 17:52:22 roberto Exp roberto $ +** $Id: lparser.c,v 1.184 2002/05/16 18:39:46 roberto Exp roberto $ ** Lua Parser ** See Copyright Notice in lua.h */ -#include #include #include "lua.h" @@ -852,7 +851,7 @@ static void check_conflict (LexState *ls, struct LHS_assign *lh, expdesc *v) { static void assignment (LexState *ls, struct LHS_assign *lh, int nvars) { expdesc e; check_condition(ls, VLOCAL <= lh->v.k && lh->v.k <= VINDEXED, - "syntax error!"); + "syntax error"); if (ls->t.token == ',') { /* assignment -> `,' primaryexp assignment */ struct LHS_assign nv; nv.prev = lh; -- cgit v1.2.3-55-g6feb