[#1147] Copying RVALUE — why the lucky stiff <ruby-core@...>

Hello, everyone. Hope you are all doing well.

18 messages 2003/06/17
[#1155] Re: Copying RVALUE — matz@... (Yukihiro Matsumoto) 2003/06/20

Hi,

[#1157] Re: Copying RVALUE — why the lucky stiff <ruby-core@...> 2003/06/20

Yukihiro Matsumoto (matz@ruby-lang.org) wrote:

[#1173] class.c code cleanup (rb_class_*_instance_methods) — Matthew Dempsky <jivera@...>

Hi, I'm new to this mailing list so I don't know the procedure for

15 messages 2003/06/22
[#1174] Re: [Patch] class.c code cleanup (rb_class_*_instance_methods) — nobu.nokada@... 2003/06/22

Hi,

[#1175] Re: [Patch] class.c code cleanup (rb_class_*_instance_methods) — Matthew Dempsky <jivera@...> 2003/06/22

On Sun, 2003-06-22 at 05:36, nobu.nokada@softhome.net wrote:

[#1176] Re: [Patch] class.c code cleanup (rb_class_*_instance_methods) — nobu.nokada@... 2003/06/22

Hi,

[#1193] Re: [Patch] class.c code cleanup (rb_class_*_instance_methods) — Matthew Dempsky <jivera@...> 2003/06/25

On Sun, 2003-06-22 at 07:41, nobu.nokada@softhome.net wrote:

[#1177] Re: In 1.8.0 nil.to_s is not the same as "" — ts <decoux@...>

14 messages 2003/06/22

Re: Bus error in compiler

From: ts <decoux@...>
Date: 2003-06-18 15:10:23 UTC
List: ruby-core #1151
>>>>> "D" == Dave Thomas <dave@pragprog.com> writes:

D> $ ruby -v t.rb
D> t.rb:2: [BUG] Bus Error
D> ruby 1.8.0 (2003-06-05) [powerpc-darwin6.6]

 Can you try ?

svg% diff -u parse.y.old parse.y 
--- parse.y.old 2003-06-18 16:58:08.000000000 +0200
+++ parse.y     2003-06-18 16:59:11.000000000 +0200
@@ -1287,7 +1287,7 @@
                    }
                | arg_value ',' args ',' tSTAR arg_value opt_block_arg
                    {
-                       $$ = arg_concat(list_concat($1,$3), $6);
+                       $$ = arg_concat(list_concat(NEW_LIST($1),$3), $6);
                        $$ = arg_blk_pass($$, $7);
                    }
                | assocs opt_block_arg
svg% 

svg% cat b.rb
     def method_missing(mname, *args)
         ae_send (mname[0,4], mname[4,4], *args)
     end
svg% 

svg% ruby -v b.rb
ruby 1.8.0 (2003-06-16) [i686-linux]
b.rb:2: warning: don't put space before argument parentheses
svg% 


Guy Decoux

In This Thread