aboutsummaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-30 16:53:28 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-30 16:53:28 -0200
commit4542fb9f78ff72c6bc72be76385f9710ffee867a (patch)
treed61e42e9130445fda7fe8968a6bf17ffc16f5364 /llex.c
parent80e817719de40823622f0c91288d129293373875 (diff)
downloadlua-4542fb9f78ff72c6bc72be76385f9710ffee867a.tar.gz
lua-4542fb9f78ff72c6bc72be76385f9710ffee867a.tar.bz2
lua-4542fb9f78ff72c6bc72be76385f9710ffee867a.zip
comments (a few extra quotes around identifiers)
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/llex.c b/llex.c
index 16aac180..e737c169 100644
--- a/llex.c
+++ b/llex.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.c,v 2.85 2014/10/25 11:50:46 roberto Exp roberto $ 2** $Id: llex.c,v 2.86 2014/10/26 15:45:41 roberto Exp roberto $
3** Lexical Analyzer 3** Lexical Analyzer
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -438,7 +438,7 @@ static void read_string (LexState *ls, int del, SemInfo *seminfo) {
438 } 438 }
439 default: { 439 default: {
440 esccheck(ls, lisdigit(ls->current), "invalid escape sequence"); 440 esccheck(ls, lisdigit(ls->current), "invalid escape sequence");
441 c = readdecesc(ls); /* digital escape \ddd */ 441 c = readdecesc(ls); /* digital escape '\ddd' */
442 goto only_save; 442 goto only_save;
443 } 443 }
444 } 444 }