Skip to content

Commit

Permalink
parse.y: fix wrong indent [ci skip].
Browse files Browse the repository at this point in the history
  • Loading branch information
matz committed May 29, 2022
1 parent d55a152 commit af5acf3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mrbgems/mruby-compiler/core/parse.y
Expand Up @@ -4685,7 +4685,7 @@ read_escape(parser_state *p)
c = read_escape_unicode(p, 4);
if (c < 0) return 0;
}
return -c;
return -c;

case 'b':/* backspace */
return '\010';
Expand Down
2 changes: 1 addition & 1 deletion mrbgems/mruby-compiler/core/y.tab.c
Expand Up @@ -10916,7 +10916,7 @@ read_escape(parser_state *p)
c = read_escape_unicode(p, 4);
if (c < 0) return 0;
}
return -c;
return -c;

case 'b':/* backspace */
return '\010';
Expand Down

0 comments on commit af5acf3

Please sign in to comment.