From 4542fb9f78ff72c6bc72be76385f9710ffee867a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 30 Oct 2014 16:53:28 -0200 Subject: comments (a few extra quotes around identifiers) --- llex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llex.c') diff --git a/llex.c b/llex.c index 16aac180..e737c169 100644 --- a/llex.c +++ b/llex.c @@ -1,5 +1,5 @@ /* -** $Id: llex.c,v 2.85 2014/10/25 11:50:46 roberto Exp roberto $ +** $Id: llex.c,v 2.86 2014/10/26 15:45:41 roberto Exp roberto $ ** Lexical Analyzer ** See Copyright Notice in lua.h */ @@ -438,7 +438,7 @@ static void read_string (LexState *ls, int del, SemInfo *seminfo) { } default: { esccheck(ls, lisdigit(ls->current), "invalid escape sequence"); - c = readdecesc(ls); /* digital escape \ddd */ + c = readdecesc(ls); /* digital escape '\ddd' */ goto only_save; } } -- cgit v1.2.3-55-g6feb