aboutsummaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
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 }