From 67688bf178e1fc64ff5af1b07ce834ffb3a84a38 Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 20 Jun 2003 07:11:44 +0000 Subject: * parse.y (new_yield): distinguish "yield 1,2" and "yield [1,2]". [ruby-dev:20360] * eval.c (rb_eval): support new_yield() change. * variable.c (rb_const_get_0): warn for Foo::BAR when BAR is a toplevel constant (i.e. a constant defined under Object). [ruby-list:36935] * parse.y (no_blockarg): separate no block argument check and ret_args argument processing. * range.c (rb_range_beg_len): out_of_range check after adjusting end point. [ruby-dev:20370] * parse.y (call_args): the first argument to arg_cancat() should be NODE_LIST. [ruby-core:01151] * eval.c (rb_eval): should dispatch based on ID type. * eval.c (rb_yield_0): should restore scope_vmode during yield. [ruby-dev:20361] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3967 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index c3f01c20a..c7132604b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,20 @@ Fri Jun 20 15:04:28 2003 NAKAMURA Usaku * ruby.c (proc_options): ditto. +Fri Jun 20 03:09:21 2003 Yukihiro Matsumoto + + * parse.y (new_yield): distinguish "yield 1,2" and "yield [1,2]". + [ruby-dev:20360] + + * eval.c (rb_eval): support new_yield() change. + + * variable.c (rb_const_get_0): warn for Foo::BAR when BAR is a + toplevel constant (i.e. a constant defined under Object). + [ruby-list:36935] + + * parse.y (no_blockarg): separate no block argument check and + ret_args argument processing. + Fri Jun 20 00:45:19 2003 NAKAMURA, Hiroshi * lib/csv.rb: Import csv module. @@ -32,12 +46,31 @@ Thu Jun 19 13:13:10 2003 NAKAMURA Usaku * hash.c (env_delete, rb_f_getenv, env_fetch): case insensitive to access environment variables on DOSISH platforms. +Thu Jun 19 00:51:47 2003 NAKAMURA Hiroshi + + * range.c (rb_range_beg_len): out_of_range check after adjusting + end point. [ruby-dev:20370] + +Wed Jun 18 23:59:11 2003 Guy Decoux + + * parse.y (call_args): the first argument to arg_cancat() should + be NODE_LIST. [ruby-core:01151] + Wed Jun 18 23:41:27 2003 Marc Cartright * ext/zlib/zlib.c (zstream_run): In a particular situation, deflate/inflate will return Z_BUF_ERROR, even though another call is required by the zlib library. +Wed Jun 18 13:50:06 2003 Yukihiro Matsumoto + + * eval.c (rb_eval): should dispatch based on ID type. + +Wed Jun 18 12:53:42 2003 Minero Aoki + + * eval.c (rb_yield_0): should restore scope_vmode during yield. + [ruby-dev:20361] + Wed Jun 18 01:13:36 2003 why the lucky stiff * ext/syck/rubyext.c (rb_syck_load_handler): merge key implemented. -- cgit