From 64e7ed11fda266dbbd72e6b80acd310149b1ec71 Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 6 Jul 2000 07:21:26 +0000 Subject: matz git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@816 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 656e5dacd..6c87b9e4b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,21 @@ +Thu Jul 6 13:51:57 2000 Nobuyoshi Nakada + + * object.c (rb_to_id): name may not be symbol or fixnum. + + * struct.c (rb_struct_s_def): name may be nil. + +Thu Jul 6 02:09:06 2000 Yukihiro Matsumoto + + * bignum.c (bigdivrem): new function to return remainder. + + * numeric.c (fixdivmod): now returns modulo, not remainder. + + * numeric.c (flodivmod): ditto. + + * bignum.c (bigdivmod): ditto. + + * numeric.c (num_modulo): new method; alias to '%'. + Thu Jul 6 00:51:43 2000 WATANABE Hirofumi * win32/win32.c (NtCmdGlob): patterns should be separated and @@ -11,6 +29,26 @@ Wed Jul 5 22:27:56 2000 WATANABE Hirofumi * lib/mkmf.rb: ditto. +Wed Jul 5 09:47:14 2000 Yukihiro Matsumoto + + * time.c (time_arg): Time::local, Time::gm now take 7th optional + argument for usec. + + * numeric.c (num_ceil, etc): default ceil, floor, round, trancate + implementation for Numeric, using `to_f'. + + * io.c (rb_io_reopen): clear fptr->path after free() to prevent + potential GC crash. + + * io.c (rb_file_s_open): terminate fptr uless null. + + * io.c (rb_file_initialize): ditto. + + * lib/tempfile.rb: specify FILE::CREAT|File::EXCL to open for + better security. + + * numeric.c (flo_truncate): new method. + Wed Jul 5 01:02:53 2000 WATANABE Hirofumi * ext/extmk.rb.in: join ' ' -> join(' '). @@ -57,6 +95,12 @@ Tue Jul 4 00:15:23 2000 Dave Thomas * numeric.c (Init_Numeric): forgot to register Numeric#remainder. +Mon Jul 3 23:46:56 2000 Katsuyuki Komatsu + + * win32/win32.c (myselect, myaccept): disable interrupt while + executing accept() or select() to avoid Ctrl-C causes + "unknown software exception (0xc0000029)". + Mon Jul 3 18:35:41 2000 WATANABE Hirofumi * lib/mkmf.rb: use null device if it exists for cross-compiling. -- cgit