From b5084fdafe972470a12454e11485a7dece9b2da8 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 6 Jul 2011 13:45:14 -0300 Subject: detail (comment) --- llex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llex.c b/llex.c index 090723f5..5bd31d80 100644 --- a/llex.c +++ b/llex.c @@ -1,5 +1,5 @@ /* -** $Id: llex.c,v 2.49 2011/06/23 14:54:48 roberto Exp roberto $ +** $Id: llex.c,v 2.50 2011/07/05 19:13:45 roberto Exp roberto $ ** Lexical Analyzer ** See Copyright Notice in lua.h */ @@ -355,7 +355,7 @@ static void read_string (LexState *ls, int del, SemInfo *seminfo) { case '\r': save(ls, '\n'); inclinenumber(ls); continue; case EOZ: continue; /* will raise an error next loop */ case 'z': { /* zap following span of spaces */ - next(ls); /* skip the '*' */ + next(ls); /* skip the 'z' */ while (lisspace(ls->current)) { if (currIsNewline(ls)) inclinenumber(ls); else next(ls); -- cgit v1.2.3-55-g6feb