comments (a few extra quotes around identifiers)

This commit is contained in:
Roberto Ierusalimschy
2014-10-30 16:53:28 -02:00
parent 80e817719d
commit 4542fb9f78
6 changed files with 17 additions and 17 deletions

4
llex.c
View File

@@ -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;
}
}