diff options
| author | Lua Team <team@lua.org> | 2013-03-21 12:00:00 +0000 |
|---|---|---|
| committer | repogen <> | 2013-03-21 12:00:00 +0000 |
| commit | dc27609467d2699ac9252e89d632432ac5f798f2 (patch) | |
| tree | b934d79a77a76df417078dc6ac162bb0012708bb /src/llex.c | |
| parent | a101faf3e9db5b8b47cb0bcfb973b13d46ca304a (diff) | |
| download | lua-github-5.2.2.tar.gz | |
Diffstat (limited to 'src/llex.c')
| -rw-r--r-- | src/llex.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* -** $Id: llex.c,v 2.62 2012/12/05 19:57:00 roberto Exp $ +** $Id: llex.c,v 2.63 2013/03/16 21:10:18 roberto Exp $ ** Lexical Analyzer ** See Copyright Notice in lua.h */ @@ -313,7 +313,7 @@ static int readhexaesc (LexState *ls) { int c[3], i; /* keep input for error message */ int r = 0; /* result accumulator */ c[0] = 'x'; /* for error message */ - for (i = 1; i < 3; i++) { /* read two hexa digits */ + for (i = 1; i < 3; i++) { /* read two hexadecimal digits */ c[i] = next(ls); if (!lisxdigit(c[i])) escerror(ls, c, i + 1, "hexadecimal digit expected"); |
