From d2d4589aebebd37080c8d96b6373d43283412f77 Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 8 Jun 2001 14:20:58 +0000 Subject: * gc.c (Init_stack): avoid __builtin_frame_address(2) to retrieve stack bottom line. * st.c (numhash): should shuffle bits by dividing by prime number. * eval.c (rb_eval): multiple assignment behavior fixed, which results "*a = nil" makes "a == []" now. * eval.c (rb_f_require): should set SCOPE_PUBLIC before calling dln_load(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1516 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 65b1332bc..be649733b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,22 @@ +Fri Jun 8 22:37:40 2001 Yukihiro Matsumoto + + * gc.c (Init_stack): avoid __builtin_frame_address(2) to retrieve + stack bottom line. + +Fri Jun 8 18:14:12 2001 Yukihiro Matsumoto + + * st.c (numhash): should shuffle bits by dividing by prime number. + +Fri Jun 8 17:05:21 2001 Yukihiro Matsumoto + + * eval.c (rb_eval): multiple assignment behavior fixed, which + results "*a = nil" makes "a == []" now. + +Fri Jun 8 15:25:09 2001 Yukihiro Matsumoto + + * eval.c (rb_f_require): should set SCOPE_PUBLIC before calling + dln_load(). + Thu Jun 7 17:28:00 2001 Yukihiro Matsumoto * parse.y (yylex): exclude kDO_BLOCK too much by false condition. -- cgit