From e62dcaf45c096d55e5c9eb52edf7125af0cd3939 Mon Sep 17 00:00:00 2001 From: matz Date: Sat, 4 Oct 2003 17:51:11 +0000 Subject: * marshal.c (w_object): instance variable dump do not cause error for objects that cannot be dumped, if they traversed from marshal_dump. they are just ignored. * gc.c (Init_stack): cast "space" (doble value) into unsigned int. should run on PowerPC. * eval.c (rb_eval): should not execute else part if any exception is caught. [ruby-dev:21482] * parse.y (f_args): should allow unparenthesized block argument. * parse.y (f_rest_arg): should allow unparenthesized rest argument. * lib/irb/ruby-lex.rb (RubyLex::identify_identifier): support 'class ::Foo' syntax. [ruby-talk:83514] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4680 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index b37b7f0a8..42d9de7cb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -30,6 +30,23 @@ Sat Oct 4 17:52:59 2003 NAKAMURA, Hiroshi * test/runner.rb: give testsuite name. +Sat Oct 4 15:16:02 2003 Yukihiro Matsumoto + + * marshal.c (w_object): instance variable dump do not cause error + for objects that cannot be dumped, if they traversed from + marshal_dump. they are just ignored. + + * gc.c (Init_stack): cast "space" (doble value) into unsigned + int. should run on PowerPC. + + * eval.c (rb_eval): should not execute else part if any exception + is caught. [ruby-dev:21482] + + * parse.y (f_args): should allow unparenthesized block argument. + + * parse.y (f_rest_arg): should allow unparenthesized rest + argument. + Sat Oct 4 14:59:51 2003 Tanaka Akira * lib/pathname.rb (initialize): raise ArgumentError if argument has @@ -123,6 +140,11 @@ Fri Oct 3 13:02:00 2003 Nathaniel Talbott * test/testunit/collector/test_objectspace.rb: ditto. +Fri Oct 3 08:14:32 2003 Yukihiro Matsumoto + + * lib/irb/ruby-lex.rb (RubyLex::identify_identifier): support + 'class ::Foo' syntax. [ruby-talk:83514] + Fri Oct 3 08:01:00 2003 Nathaniel Talbott * lib/test/unit/assertions.rb: added a default message for #assert, -- cgit