Skip to content

Commit

Permalink
Fix indents.
Browse files Browse the repository at this point in the history
  • Loading branch information
monaka committed Mar 12, 2013
1 parent 46d8c51 commit d62f497
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/parse.y
Expand Up @@ -3457,19 +3457,19 @@ read_escape(parser_state *p)
case '0': case '1': case '2': case '3': /* octal constant */
case '4': case '5': case '6': case '7':
{
int buf[3];
int i;
int buf[3];
int i;

buf[0] = c;
for (i=1; i<3; i++) {
buf[0] = c;
for (i=1; i<3; i++) {
buf[i] = nextc(p);
if (buf[i] == -1) goto eof;
if (buf[i] < '0' || '7' < buf[i]) {
pushback(p, buf[i]);
break;
}
}
c = scan_oct(buf, i, &i);
if (buf[i] < '0' || '7' < buf[i]) {
pushback(p, buf[i]);
break;
}
}
c = scan_oct(buf, i, &i);
}
return c;

Expand Down

0 comments on commit d62f497

Please sign in to comment.