summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-15 06:10:01 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-15 06:10:01 +0000
commit2ca5e8eeababba0469aef7421572e29d81b9bd34 (patch)
treed6ec6131b3db9f44a6fb9ee8346b39f5d4421617 /parse.y
parent771f692792227e77dd9e9df74a2fda7bb6f33622 (diff)
* parse.y (yycompile0): adjust indent.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38403 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y8
1 files changed, 4 insertions, 4 deletions
diff --git a/parse.y b/parse.y
index 57f7142f1d..e42cd9e79f 100644
--- a/parse.y
+++ b/parse.y
@@ -5317,16 +5317,16 @@ yycompile0(VALUE arg)
parser->parser_token_info_enabled = !compile_for_eval && RTEST(ruby_verbose);
#endif
#ifndef RIPPER
- if(RUBY_DTRACE_PARSE_BEGIN_ENABLED()) {
+ if (RUBY_DTRACE_PARSE_BEGIN_ENABLED()) {
RUBY_DTRACE_PARSE_BEGIN(parser->parser_ruby_sourcefile,
- parser->parser_ruby_sourceline);
+ parser->parser_ruby_sourceline);
}
#endif
n = yyparse((void*)parser);
#ifndef RIPPER
- if(RUBY_DTRACE_PARSE_END_ENABLED()) {
+ if (RUBY_DTRACE_PARSE_END_ENABLED()) {
RUBY_DTRACE_PARSE_END(parser->parser_ruby_sourcefile,
- parser->parser_ruby_sourceline);
+ parser->parser_ruby_sourceline);
}
#endif
ruby_debug_lines = 0;