From: matz@... (Yukihiro Matsumoto) Date: 2001-05-07T17:24:40+09:00 Subject: [ruby-talk:14758] Re: have I messed up my setup, or are these real irb problems? Hi, In message "[ruby-talk:14741] Re: have I messed up my setup, or are these real irb problems?" on 01/05/07, Yukihiro Matsumoto writes: ||possible that I've messed something up. However, with both the latest ||1.6 and 1.7 cvs versions, I get the following two problems: | |They are bugs, reported also in [ruby-list:29521]. Keiju should/would |take action for them. With his report, it's found out to be MY bug. ;-< matz. --- eval.c 2001/05/06 15:01:58 1.174 +++ eval.c 2001/05/07 07:05:48 @@ -4739,2 +4739,3 @@ struct RVarmap * volatile old_dyna_vars; + VALUE volatile old_cref; int volatile old_vmode; @@ -4769,2 +4770,4 @@ scope_vmode = data->vmode; + old_cref = (VALUE)ruby_cref; + ruby_cref = (NODE*)ruby_frame->cbase; @@ -4804,2 +4807,3 @@ + ruby_cref = (NODE*)old_cref; ruby_frame = frame.tmp;