From 24424d3991179ec50837cff97b21f646f7069447 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 29 Jul 2003 18:26:55 +0000 Subject: * marshal.c (w_object): if object responds to 'marshal_dump', Marshal.dump uses it to dump object. unlike '_dump', marshal_dump returns any kind of object. * marshal.c (r_object0): restore instance by calling 'marshal_load' method. unlike '_load', it's an instance method, to handle cyclic reference. * marshal.c (marshal_load): all objects read from file should be tainted. [ruby-core:01325] * lib/timeout.rb (Timeout::timeout): execute immediately if sec is zero. * ext/socket/socket.c (socks_init): typo fixed. [ruby-talk:77232] * ext/socket/extconf.rb: the default value for --enable-socks is taken from ENV["SOCKS_SERVER"]. [ruby-talk:77232] * ruby.c (proc_options): add -W option. -W0 to shut up all warning messages. [ruby-talk:77227] * error.c (rb_warn): no message will be printed if the value of $VERBOSE is "nil", i.e. perfect silence. * ruby.c (verbose_setter): $VERBOSE value is either true, false, or nil. * io.c (Init_IO): no "read" check for $stdin. in addition some function names has been changed. * regex.c (re_match_exec): incorrect multibyte match. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4220 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 5931c6f8b..e614097a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,46 @@ +Wed Jul 30 02:37:12 2003 Yukihiro Matsumoto + + * marshal.c (w_object): if object responds to 'marshal_dump', + Marshal.dump uses it to dump object. unlike '_dump', + marshal_dump returns any kind of object. + + * marshal.c (r_object0): restore instance by calling + 'marshal_load' method. unlike '_load', it's an instance + method, to handle cyclic reference. + + * marshal.c (marshal_load): all objects read from file should be + tainted. [ruby-core:01325] + +Wed Jul 30 01:47:51 2003 Hugh Sasse + + * lib/timeout.rb (Timeout::timeout): execute immediately if sec is + zero. + +Wed Jul 30 01:36:18 2003 Aron Griffis + + * ext/socket/socket.c (socks_init): typo fixed. [ruby-talk:77232] + +Wed Jul 30 00:48:43 2003 Yukihiro Matsumoto + + * ext/socket/extconf.rb: the default value for --enable-socks is + taken from ENV["SOCKS_SERVER"]. [ruby-talk:77232] + + * ruby.c (proc_options): add -W option. -W0 to shut up all warning + messages. [ruby-talk:77227] + + * error.c (rb_warn): no message will be printed if the value of + $VERBOSE is "nil", i.e. perfect silence. + + * ruby.c (verbose_setter): $VERBOSE value is either true, false, + or nil. + + * io.c (Init_IO): no "read" check for $stdin. in addition some + function names has been changed. + +Tue Jul 29 23:10:19 2003 Yoshida Masato + + * regex.c (re_match_exec): incorrect multibyte match. + Tue Jul 29 22:36:50 2003 Minero Aoki * lib/net/smtp.rb (send0): do taint check only when $SAFE > 0 -- cgit