From d3ac7075a25a28d2968efd5600041dddcdb8a9d2 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 23 Dec 1998 12:06:57 -0200 Subject: better error message --- lparser.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'lparser.c') diff --git a/lparser.c b/lparser.c index 02fab35a..659d64d6 100644 --- a/lparser.c +++ b/lparser.c @@ -1,5 +1,5 @@ /* -** $Id: lparser.c,v 1.4 1998/07/24 18:02:38 roberto Exp roberto $ +** $Id: lparser.c,v 1.5 1998/08/11 13:28:05 roberto Exp roberto $ ** LL(1) Parser and code generator for Lua ** See Copyright Notice in lua.h */ @@ -586,6 +586,12 @@ static void error_expected (LexState *ls, int token) { luaX_error(ls, buff); } + +static void error_unexpected (LexState *ls) { + luaX_error(ls, "unexpected token"); +} + + static void error_unmatched (LexState *ls, int what, int who, int where) { if (where == ls->linenumber) error_expected(ls, what); @@ -759,7 +765,7 @@ static int stat (LexState *ls) { return 0; default: - luaX_error(ls, " expected"); + error_unexpected(ls); return 0; /* to avoid warnings */ } } @@ -1252,7 +1258,7 @@ static void part (LexState *ls, constdesc *cd) { code_string(ls, ls->fs->localvar[v.info]); break; default: - luaX_error(ls, "`=' unexpected"); + error_unexpected(ls); } next(ls); exp1(ls); -- cgit v1.2.3-55-g6feb