lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 0652906e7a6be897d67c5246c7897d1d10b683ff
parent 4d1b815b60b884b60e7e3cdb62f5f8ccf4b2a6d3
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Thu, 30 Dec 1999 10:40:07 -0200

details.

Diffstat:
Mllex.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/llex.c b/llex.c @@ -1,5 +1,5 @@ /* -** $Id: llex.c,v 1.46 1999/12/14 18:31:20 roberto Exp roberto $ +** $Id: llex.c,v 1.47 1999/12/22 16:58:36 roberto Exp roberto $ ** Lexical Analyzer ** See Copyright Notice in lua.h */ @@ -402,7 +402,7 @@ int luaX_lex (LexState *LS) { if (toupper(LS->current) == 'E') { save_and_next(L, LS); /* read 'E' */ if (LS->current == '+' || LS->current == '-') - save_and_next(L, LS); /* optional exponent signal */ + save_and_next(L, LS); /* optional exponent sign */ while (isdigit(LS->current)) save_and_next(L, LS); }