use ISXDIGIT instead isxdigit on parser.y:3485

This commit is contained in:
Daehyub Kim
2013-04-20 00:07:37 +09:00
parent 9269703480
commit c5712bcb3f
+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;
}