1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* parse.y (brace_block): should use compstmt. patch submitted by

Kirill A. Shutemov <k.shutemov AT gmail.com>  [ruby-core:12154].


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13437 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2007-09-13 05:00:23 +00:00
parent ffc1b8af9b
commit 458c4e98aa
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Thu Sep 13 14:00:15 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* parse.y (brace_block): should use compstmt. patch submitted by
Kirill A. Shutemov <k.shutemov AT gmail.com> [ruby-core:12154].
Thu Sep 13 13:47:08 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> Thu Sep 13 13:47:08 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* parse.y (rb_id2str): fixed typo. * parse.y (rb_id2str): fixed typo.

View file

@ -3472,7 +3472,7 @@ brace_block : '{'
nd_set_line($$, $<num>2); nd_set_line($$, $<num>2);
dyna_pop(); dyna_pop();
/*% /*%
$$ = dispatch2(do_block, escape_Qundef($3), $5); $$ = dispatch2(do_block, escape_Qundef($3), $4);
%*/ %*/
} }
; ;