diff --git a/llex.c b/llex.c index 08beda35..3e308753 100644 --- a/llex.c +++ b/llex.c @@ -1,12 +1,11 @@ /* -** $Id: llex.c,v 1.101 2002/05/15 18:57:44 roberto Exp roberto $ +** $Id: llex.c,v 1.102 2002/05/16 18:39:46 roberto Exp roberto $ ** Lexical Analyzer ** See Copyright Notice in lua.h */ #include -#include #include #include "lua.h" 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; diff --git a/lstate.c b/lstate.c index cf8abefb..99b4bf75 100644 --- a/lstate.c +++ b/lstate.c @@ -1,12 +1,10 @@ /* -** $Id: lstate.c,v 1.93 2002/05/07 17:36:56 roberto Exp roberto $ +** $Id: lstate.c,v 1.94 2002/05/08 17:34:23 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ -#include - #include "lua.h" #include "ldo.h" @@ -30,7 +28,6 @@ static void close_state (lua_State *L); ** call `lua_setpanicf' */ static int default_panic (lua_State *L) { - fputs("unable to recover; exiting\n", stderr); return 0; } diff --git a/ltm.c b/ltm.c index 7b7b64a2..54762902 100644 --- a/ltm.c +++ b/ltm.c @@ -1,11 +1,10 @@ /* -** $Id: ltm.c,v 1.91 2002/05/20 19:51:06 roberto Exp roberto $ +** $Id: ltm.c,v 1.92 2002/05/27 20:35:40 roberto Exp roberto $ ** Tag methods ** See Copyright Notice in lua.h */ -#include #include #include "lua.h"