Merge pull request #1190 from lateau/master

tiny fix on parser.y: change isxdigit to ISXDIGIT
This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-04-19 19:40:26 -07:00
+1 -1
View File
@@ -3482,7 +3482,7 @@ read_escape(parser_state *p)
for (i=0; i<2; i++) {
buf[i] = nextc(p);
if (buf[i] == -1) goto eof;
if (!isxdigit(buf[i])) {
if (!ISXDIGIT(buf[i])) {
pushback(p, buf[i]);
break;
}