Skip to content

Commit

Permalink
Merged in ruby r32428.
Browse files Browse the repository at this point in the history
This commit corrects the inconsistent ordering of rescue_mod node
children.
  • Loading branch information
Michael Edgar committed Jul 8, 2011
1 parent db9378f commit bfbc723
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/parse.y
Expand Up @@ -1051,7 +1051,7 @@ stmt : keyword_alias fitem {lex_state = EXPR_FNAME;} fitem
NODE *resq = NEW_RESBODY(0, remove_begin($3), 0);
$$ = NEW_RESCUE(remove_begin($1), resq, 0);
/*%
$$ = dispatch2(rescue_mod, $3, $1);
$$ = dispatch2(rescue_mod, $1, $3);
%*/
}
| keyword_END '{' compstmt '}'
Expand Down

0 comments on commit bfbc723

Please sign in to comment.