From d5fde88a3b2b1e1c8f27e1cbccd7fdafe82a4d84 Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 9 Jul 2003 22:28:42 +0000 Subject: * eval.c (rb_load): put rb_load_file() in a thread critical section. [ruby-dev:20490] * eval.c (compile): put rb_compile_string() in a thread critical section. * variable.c (rb_const_get_0): should not warn if constant is not defined. (ruby-bugs-ja PR#509) * bignum.c (rb_big2dbl): give a warning on overflow. (ruby-bugs-ja PR#510) * util.c (ruby_strtod): change MDMAXEXPT from 511 to 308. * pack.c (utf8_to_uv): long is sufficient. LONG_LONG is not required. * bignum.c (rb_big2str): support 32 bit (without `long long' type) machines. (ruby-bugs-ja PR#512) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4050 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 36 +++++++++++++++++++++++++++++++----- 1 file changed, 31 insertions(+), 5 deletions(-) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 965a5e1d8..f00f4d796 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,19 +9,41 @@ Wed Jul 9 15:38:28 2003 WATANABE Hirofumi * mkconfig.rb: support text-mount on Cygwin. -Wed Jul 09 11:09:57 2003 NAKAMURA Usaku +Wed Jul 9 11:09:57 2003 NAKAMURA Usaku * re.c (match_entry): add prototype to avoid VC++ warnings. +Wed Jul 9 03:48:27 2003 Yukihiro Matsumoto + + * eval.c (rb_load): put rb_load_file() in a thread critical + section. [ruby-dev:20490] + + * eval.c (compile): put rb_compile_string() in a thread critical + section. + +Tue Jul 8 02:35:41 2003 Yukihiro Matsumoto + + * variable.c (rb_const_get_0): should not warn if constant is not + defined. (ruby-bugs-ja PR#509) + + * bignum.c (rb_big2dbl): give a warning on overflow. + (ruby-bugs-ja PR#510) + + * util.c (ruby_strtod): change MDMAXEXPT from 511 to 308. + + * pack.c (utf8_to_uv): long is sufficient. LONG_LONG is not + required. + +Tue Jul 8 01:43:16 2003 Koji Arai + + * bignum.c (rb_big2str): support 32 bit (without `long long' type) + machines. (ruby-bugs-ja PR#512) + Mon Jul 7 10:22:46 2003 WATANABE Hirofumi * ext/dbm/extconf.rb (gdbm_compat, qdbm): add check for gdbm_compat and qdbm. -Sat Jul 5 00:22:59 2003 Yukihiro Matsumoto - - * node.h (NEW_NODE): cast arguments to rb_node_newnode(). - Mon Jul 7 01:34:49 2003 Yukihiro Matsumoto * eval.c (rb_call_super): k->super maybe NULL if klass is Kernel. @@ -34,6 +56,10 @@ Sat Jul 5 23:32:06 2003 Yukihiro Matsumoto * eval.c (rb_mod_remove_method): allow "remove_method" to accept multiple arguments. +Sat Jul 5 00:22:59 2003 Yukihiro Matsumoto + + * node.h (NEW_NODE): cast arguments to rb_node_newnode(). + Fri Jul 4 21:48:44 2003 Nobuyoshi Nakada * ext/syck/rubyext.c, ext/syck/syck.c, ext/syck/syck.h, -- cgit