From 41dd32e18ecbb298437c124cbab60de1f90babbb Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 11 Feb 2009 16:25:20 -0200 Subject: comment (should not use 'go trhough' when simply using multiple labels) --- llex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llex.c b/llex.c index f0633b63..015e3210 100644 --- a/llex.c +++ b/llex.c @@ -1,5 +1,5 @@ /* -** $Id: llex.c,v 2.28 2007/10/25 16:45:47 roberto Exp roberto $ +** $Id: llex.c,v 2.29 2008/12/26 11:55:57 roberto Exp roberto $ ** Lexical Analyzer ** See Copyright Notice in lua.h */ @@ -286,7 +286,7 @@ static void read_string (LexState *ls, int del, SemInfo *seminfo) { case 'r': c = '\r'; break; case 't': c = '\t'; break; case 'v': c = '\v'; break; - case '\n': /* go through */ + case '\n': case '\r': save(ls, '\n'); inclinenumber(ls); continue; case EOZ: continue; /* will raise an error next loop */ default: { -- cgit v1.2.3-55-g6feb