From 8d4fda47e4867c2c8583ff396e21223a164dfb46 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 19 Nov 2001 05:03:03 +0000 Subject: * parse.y (parse_regx): should raise error on untermitated expression interpolation. * pack.c (pack_unpack): should give length to utf8_to_uv(). * pack.c (utf8_to_uv): add length check. * massages: replace "wrong #" by "wrong number". * marshal.c (w_float): output Infinity and NaN explicitly. * marshal.c (r_object): support new explicit float format. * eval.c (rb_thread_wait_for): select may cause ERESTART on Solaris. * eval.c (rb_thread_select): ditto. * array.c (rb_ary_join): dumped core if sep is not T_STRING nor T_NIL. * array.c (rb_ary_join): buffer size calculattion was wrong. * array.c (rb_ary_to_s): if rb_output_fs is nil, insert newlines between array elements (use rb_default_rs as newline litral) [experimental]. * gc.c (init_mark_stack): no need to clear mark_stack. * gc.c (gc_mark_all): need to handle finalizer mark. * gc.c (gc_mark_rest): use MEMCPY instead of memcpy. * gc.c (rb_gc_mark): earlier const check to avoid pusing special constants into mark stack. * numeric.c (fix_to_s): 'to_s' now takes optional argument to specify radix. [new] * bignum.c (rb_big_to_s): ditto. [new] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1842 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 47 +++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 45 insertions(+), 2 deletions(-) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index cc6a39a72..63fb65a8e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -10,6 +10,25 @@ Sun Nov 18 19:37:55 2001 Nobuyoshi Nakada * parse.y (parse_regx): parse error at unterminated regex /#{. (ruby-bugs-ja:PR#142) +Sat Nov 17 12:37:39 2001 Yukihiro Matsumoto + + * pack.c (pack_unpack): should give length to utf8_to_uv(). + + * pack.c (utf8_to_uv): add length check. + +Sat Nov 17 01:41:52 2001 Yukihiro Matsumoto + + * massages: replace "wrong #" by "wrong number". + + * marshal.c (w_float): output Infinity and NaN explicitly. + + * marshal.c (r_object): support new explicit float format. + + * eval.c (rb_thread_wait_for): select may cause ERESTART on + Solaris. + + * eval.c (rb_thread_select): ditto. + Thu Nov 15 15:29:39 2001 Nobuyoshi Nakada * array.c (rb_ary_join): non-nil separator must be converted to @@ -22,12 +41,36 @@ Thu Nov 15 03:37:17 2001 Usaku Nakamura * win32/win32.c, win32/win32.h: sort out #if 0 - #endif or others. +Thu Nov 15 00:07:12 2001 Yukihiro Matsumoto + + * array.c (rb_ary_to_s): if rb_output_fs is nil, insert newlines + between array elements (use rb_default_rs as newline litral) + [experimental]. + +Wed Nov 14 15:16:23 2001 K.Kosako + + * gc.c (init_mark_stack): no need to clear mark_stack. + + * gc.c (gc_mark_all): need to handle finalizer mark. + + * gc.c (gc_mark_rest): use MEMCPY instead of memcpy. + + * gc.c (rb_gc_mark): earlier const check to avoid pusing special + constants into mark stack. + Wed Nov 14 01:12:07 2001 Usaku Nakamura * win32/win32.c (waitpid): fix wait count. * win32/win32.c (poll_child_status): rename from wait_child(). +Wed Nov 14 01:33:49 2001 Yukihiro Matsumoto + + * numeric.c (fix_to_s): 'to_s' now takes optional argument to + specify radix. [new] + + * bignum.c (rb_big_to_s): ditto. [new] + Tue Nov 13 19:50:30 2001 WATANABE Hirofumi * configure.in: do not override CC if set. @@ -263,7 +306,7 @@ Tue Oct 30 18:21:51 2001 Usaku Nakamura Tue Oct 30 14:04:04 2001 Yukihiro Matsumoto - * string.c (rb_str_chomp_bang): do smart chomp if $/ == '\n'. + * string.c (rb_str_chomp_bang): do smart chomp if $/ == '\n'. [new] * io.c (rb_io_puts): don't treat Array specially. @@ -273,7 +316,7 @@ Tue Oct 30 14:04:04 2001 Yukihiro Matsumoto Mon Oct 29 16:08:30 2001 Yukihiro Matsumoto - * regex.c (re_compile_pattern): should preverve p0 value. + * regex.c (re_compile_pattern): should preserve p0 value. Mon Oct 29 14:56:44 2001 Usaku Nakamura -- cgit