From fa4476907f92bbfed5868fb33305b4d78bb42607 Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 8 Sep 2007 15:07:18 +0000 Subject: * eval_method.ci (rb_get_alloc_func): new function to get allocation function. * include/ruby/intern.h (rb_alloc_func_t): declared. (rb_define_alloc_func): declared. (rb_marshal_define_compat): declared. * range.c: use T_STRUCT for Range. * inits.c: move Init_marshal() prior to Init_Range() because Init_Range calls rb_marshal_define_compat which needs marshal's compat_allocator_tbl initialized. * marshal.c: support marshal format compatibility layer designed for marshaling T_STRUCT Range using T_OBJECT format. (rb_marshal_define_compat): defined. [ruby-dev:31710] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13413 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 1040e093e..4627b4ef6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,24 @@ +Sat Sep 8 23:55:56 2007 Tanaka Akira + + * eval_method.ci (rb_get_alloc_func): new function to get allocation + function. + + * include/ruby/intern.h (rb_alloc_func_t): declared. + (rb_define_alloc_func): declared. + (rb_marshal_define_compat): declared. + + * range.c: use T_STRUCT for Range. + + * inits.c: move Init_marshal() prior to Init_Range() because + Init_Range calls rb_marshal_define_compat which needs + marshal's compat_allocator_tbl initialized. + + * marshal.c: support marshal format compatibility layer designed for + marshaling T_STRUCT Range using T_OBJECT format. + (rb_marshal_define_compat): defined. + + [ruby-dev:31710] + Sat Sep 8 10:05:14 2007 Yukihiro Matsumoto * struct.c (rb_struct_s_members): check if __members__ is an @@ -129,6 +150,8 @@ Sat Sep 1 20:56:07 2007 Tanaka Akira * .gdbinit: support embedded small bignums. + [ruby-dev:31689] + Sat Sep 1 19:59:43 2007 Masaki Suketa * ext/win32ole/win32ole.c (ole_event_free): IConnectionPoint should be @@ -241,9 +264,11 @@ Thu Aug 30 08:00:12 2007 Tanaka Akira * ext/tk/tkutil/tkutil.c: ditto. + [ruby-dev:31678] + Wed Aug 29 18:36:06 2007 Tanaka Akira - * lib/open-uri.rb: add :ftp_active_mode option. + * lib/open-uri.rb: add :ftp_active_mode option. [ruby-dev:31677] Wed Aug 29 14:55:28 2007 Yukihiro Matsumoto @@ -271,6 +296,8 @@ Wed Aug 29 11:30:10 2007 Tanaka Akira (st_foreach): ditto. (st_reverse_foreach): ditto. (unpack_entries): new function for converting to unpacked mode. + + [ruby-list:43954] Wed Aug 29 10:46:37 2007 Yukihiro Matsumoto @@ -761,6 +788,7 @@ Wed Aug 22 03:51:07 2007 Koichi Sasada Tue Aug 21 21:09:48 2007 Tanaka Akira * lib/tmpdir.rb (Dir.mktmpdir): make directory suffix specifiable. + suggested by knu. [ruby-dev:31568] Tue Aug 21 15:00:23 2007 Koichi Sasada -- cgit