From 88607acc2c41c2bace172b78012d2ce9abf05766 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 26 Jun 2002 13:37:23 -0300 Subject: details --- lparser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lparser.c') diff --git a/lparser.c b/lparser.c index 3ceb15e7..181e4284 100644 --- a/lparser.c +++ b/lparser.c @@ -1,5 +1,5 @@ /* -** $Id: lparser.c,v 1.187 2002/06/06 13:52:37 roberto Exp roberto $ +** $Id: lparser.c,v 1.188 2002/06/06 17:29:53 roberto Exp roberto $ ** Lua Parser ** See Copyright Notice in lua.h */ @@ -927,7 +927,7 @@ static void whilestat (LexState *ls, int line) { fs->jpc = NO_JUMP; sizeexp = fs->pc - expinit; /* size of expression code */ if (sizeexp > MAXEXPWHILE) - luaX_syntaxerror(ls, "while condition too complex"); + luaX_syntaxerror(ls, "`while' condition too complex"); for (i = 0; i < sizeexp; i++) /* save `exp' code */ codeexp[i] = fs->f->code[expinit + i]; fs->pc = expinit; /* remove `exp' code */ -- cgit v1.2.3-55-g6feb