From 7e7ffd5de013939034d43a94802307e48a88cbb1 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 5 Apr 2004 07:45:32 +0000 Subject: * eval.c (top_include): include in the wrapped load is done for the wrapper, not for a singleton class for wrapped main. [ruby-dev:23305] * bignum.c (rb_big_eq): use temporary double variable to save the result (internal float register may be bigger than 64 bits, for example, 80 bits on x86). [ruby-dev:23311] * eval.c (block_pass): should generate unique identifier of the pushing block. [ruby-talk:96363] * ext/socket/socket.c (make_hostent): fix memory leak, based on the patch from HORIKAWA Hisashi . git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6092 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 7533bc417..51dd21c29 100644 --- a/ChangeLog +++ b/ChangeLog @@ -34,11 +34,34 @@ Sat Apr 3 17:11:05 2004 why the lucky stiff * ext/syck/rubyext.c: handle base60, as well as hex and octal with commas. implicit typing of ruby symbols. +Fri Apr 2 17:27:17 2004 Yukihiro Matsumoto + + * eval.c (top_include): include in the wrapped load is done for + the wrapper, not for a singleton class for wrapped main. + [ruby-dev:23305] + +Fri Apr 2 15:13:44 2004 Yukihiro Matsumoto + + * bignum.c (rb_big_eq): use temporary double variable to save the + result (internal float register may be bigger than 64 bits, for + example, 80 bits on x86). [ruby-dev:23311] + +Fri Apr 2 14:35:26 2004 Yukihiro Matsumoto + + * eval.c (block_pass): should generate unique identifier of the + pushing block. [ruby-talk:96363] + +Fri Apr 2 07:31:38 2004 Yukihiro Matsumoto + + * ext/socket/socket.c (make_hostent): fix memory leak, based on + the patch from HORIKAWA Hisashi . + Thu Apr 1 19:58:37 2004 NAKAMURA, Hiroshi * lib/soap/mapping/{factory.rb,registry.rb}: fixed illegal mapped URI object with soap/marshal. added URIFactory class for URI mapping. BasetypeFactory checks + Thu Apr 1 22:55:33 2004 Dave Thomas * lib/rdoc/parsers/parse_rb.rb: Allow rdoc comments in @@ -98,6 +121,11 @@ Sat Mar 27 10:40:48 2004 Tanaka Akira * (lib/pp.rb, lib/prettyprint.rb): define seplist in PP::PPMethods instead of PrettyPrint. +Thu Mar 25 23:28:52 2004 Yukihiro Matsumoto + + * time.c (time_overflow_p): backport 1.9 usec overflow function. + (ruby-bugs PR#1307) + Thu Mar 25 23:15:24 2004 Dave Thomas * lib/rdoc/ri/ri_options.rb (RI::Options::show_version): @@ -169,6 +197,14 @@ Sat Mar 20 20:57:10 2004 David Black * lib/scanf.rb: Backported 1.9 branch modifications/corrections to 1.8 branch +Sat Mar 20 23:51:03 2004 WATANABE Hirofumi + + * eval.c (rb_require_safe): preserve old ruby_errinfo. + [ruby-talk:95409] + + * eval.c (rb_f_raise): should not clear backtrace information if + exception object already have one. + Sat Mar 20 15:25:36 2004 Dave Thomas * lib/rdoc/generators/template/html/html.rb (RDoc::Page): Force -- cgit