From c9c08718394a5c2de1ae2108c51df431b59095b9 Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 27 Oct 2004 09:29:26 +0000 Subject: * node.h (NODE_TYPESHIFT): allow 4 more bits for line numbers. [ruby-talk:117841] * ruby.h (FL_ABLE): nodes are not subject for flag operations. * io.c (ARGF_FORWARD): should have specified argv explicitly, since we no longer have frame->argv saved. [ruby-dev:24602] * string.c (RESIZE_CAPA): check string attribute before modifying capacity member of string structure. [ruby-dev:24594] * ext/zlib/zlib.c (gzreader_gets): use memchr() to to gain performance. [ruby-talk:117701] * sprintf.c (rb_f_sprintf): raise ArgumentError for extra arguments, unless (digit)$ style used. * io.c (rb_io_fptr_finalize): leave stdin/stdout/stderr open in interpreter termination. [ruby-dev:24579] * eval.c (frame_free): Guy Decoux solved the leak problem. Thanks. [ruby-core:03549] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7121 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 0655e0ca7..8b00649ab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,11 +3,36 @@ Wed Oct 27 09:17:30 2004 Nobuyoshi Nakada * string.c (str_gsub): use a string object for exception safeness. [ruby-dev:24601] +Wed Oct 27 07:38:55 2004 Yukihiro Matsumoto + + * node.h (NODE_TYPESHIFT): allow 4 more bits for line numbers. + [ruby-talk:117841] + + * ruby.h (FL_ABLE): nodes are not subject for flag operations. + + * io.c (ARGF_FORWARD): should have specified argv explicitly, + since we no longer have frame->argv saved. [ruby-dev:24602] + Tue Oct 26 23:30:39 2004 Dave Thomas * lib/rdoc/code_objects.rb (RDoc::Context::add_class_or_module): Restore correct :nopdoc: behavior with nested classes and modules. +Tue Oct 26 18:21:29 2004 Yukihiro Matsumoto + + * string.c (RESIZE_CAPA): check string attribute before modifying + capacity member of string structure. [ruby-dev:24594] + +Tue Oct 26 11:33:26 2004 David G. Andersen + + * ext/zlib/zlib.c (gzreader_gets): use memchr() to to gain + performance. [ruby-talk:117701] + +Tue Oct 26 10:56:55 2004 Yukihiro Matsumoto + + * sprintf.c (rb_f_sprintf): raise ArgumentError for extra + arguments, unless (digit)$ style used. + Mon Oct 25 18:35:39 2004 WATANABE Hirofumi * win32/win32.c (isUNCRoot): should check NUL after '.'. @@ -24,6 +49,16 @@ Sun Oct 24 00:40:50 2004 Nobuyoshi Nakada * eval.c (rb_load, search_required, rb_require_safe, rb_require): use frozen shared string to avoid outside modification. [ruby-dev:24580] +Sat Oct 23 23:40:34 2004 Yukihiro Matsumoto + + * io.c (rb_io_fptr_finalize): leave stdin/stdout/stderr open in + interpreter termination. [ruby-dev:24579] + +Sat Oct 23 22:18:32 2004 Guy Decoux + + * eval.c (frame_free): Guy Decoux solved the leak problem. + Thanks. [ruby-core:03549] + Sat Oct 23 00:20:55 2004 Yukihiro Matsumoto * ext/zlib/zlib.c (zstream_append_input): clear klass for z->input -- cgit