ruby-changes:21193
From: matz <ko1@a...>
Date: Sat, 10 Sep 2011 08:33:08 +0900 (JST)
Subject: [ruby-changes:21193] matz:r33242 (trunk): * parse.y (bv_decls): parse.y relies on $$ = $1 before action
matz 2011-09-10 08:32:56 +0900 (Sat, 10 Sep 2011) New Revision: 33242 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=33242 Log: * parse.y (bv_decls): parse.y relies on $$ = $1 before action routines. a patch from Michael Edgar. [Bug #5303] [ruby-core:39429] Modified files: trunk/ChangeLog trunk/parse.y Index: ChangeLog =================================================================== --- ChangeLog (revision 33241) +++ ChangeLog (revision 33242) @@ -1,3 +1,9 @@ +Sat Sep 10 08:25:47 2011 Yukihiro Matsumoto <matz@r...> + + * parse.y (bv_decls): parse.y relies on $$ = $1 before action + routines. a patch from Michael Edgar. [Bug #5303] + [ruby-core:39429] + Sat Sep 10 01:37:55 2011 Kazuhiro NISHIYAMA <zn@m...> * sample/drb/dhasenc.rb: coding cookie of Emacs is coding, Index: parse.y =================================================================== --- parse.y (revision 33241) +++ parse.y (revision 33242) @@ -3498,7 +3498,7 @@ /*%c%*/ /*%c { - rb_ary_push($$, $3); + rb_ary_push($1, $3); } %*/ ; -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/