Commit d0fb6d00 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #983 from monaka/pr-fix-indent-in-parse.y-20130312

Fix indents in parse.y.
parents 9cfaa378 d62f497b
...@@ -3457,19 +3457,19 @@ read_escape(parser_state *p) ...@@ -3457,19 +3457,19 @@ read_escape(parser_state *p)
case '0': case '1': case '2': case '3': /* octal constant */ case '0': case '1': case '2': case '3': /* octal constant */
case '4': case '5': case '6': case '7': case '4': case '5': case '6': case '7':
{ {
int buf[3]; int buf[3];
int i; int i;
buf[0] = c; buf[0] = c;
for (i=1; i<3; i++) { for (i=1; i<3; i++) {
buf[i] = nextc(p); buf[i] = nextc(p);
if (buf[i] == -1) goto eof; if (buf[i] == -1) goto eof;
if (buf[i] < '0' || '7' < buf[i]) { if (buf[i] < '0' || '7' < buf[i]) {
pushback(p, buf[i]); pushback(p, buf[i]);
break; break;
} }
} }
c = scan_oct(buf, i, &i); c = scan_oct(buf, i, &i);
} }
return c; return c;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment