From 01aa0f9a4bcdd23dae3a816959ff640bf354ba56 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 13 Feb 2006 04:53:22 +0000 Subject: * parse.y (parser_parse_string): mention "regexp" in a error message. a patch from Mauricio Fernandez [ruby-core:07340] * eval.c (rb_f_autoload): check if ruby_cbase is nil (during instance_eval for objects cannot have singleton classes, e.g. fixnums and symbols). [ruby-dev:28178] * gc.c (rb_gc_call_finalizer_at_exit): turn on during_gc while invoking finalizers. * gc.c (rb_gc_finalize_deferred): ditto. * io.c (rb_write_error2): use fwrite(3) if rb_stderr is not updated or is already freed. [ruby-dev:28313] * eval.c (error_line): include the class name of a surrounding method in error position description. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9918 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 71ecc46fc..5c63a18d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Mon Feb 13 13:49:48 2006 Yukihiro Matsumoto + + * parse.y (parser_parse_string): mention "regexp" in a error + message. a patch from Mauricio Fernandez + [ruby-core:07340] + Mon Feb 13 00:01:32 2006 K.Kosako * oniguruma.h: Version 4.0.1 @@ -18,16 +24,46 @@ Sat Feb 11 21:57:29 2006 Masaki Suketa * ext/win32ole/tests/testWIN32OLE.rb: ditto. +Sat Feb 11 01:57:44 2006 Yukihiro Matsumoto + + * eval.c (rb_f_autoload): check if ruby_cbase is nil (during + instance_eval for objects cannot have singleton classes, + e.g. fixnums and symbols). [ruby-dev:28178] + +Fri Feb 10 12:31:05 2006 Yukihiro Matsumoto + + * eval.c (rb_eval): should support NODE_ZSUPER in NODE_ITER. + [ruby-dev:28326] + + * eval.c (ZSUPER_ARGS): support macro. + +Wed Feb 8 10:26:06 2006 Yukihiro Matsumoto + + * gc.c (rb_gc_call_finalizer_at_exit): turn on during_gc while + invoking finalizers. + + * gc.c (rb_gc_finalize_deferred): ditto. + Tue Feb 7 23:03:13 2006 Hirokazu Yamamoto * ext/zlib/zlib.c: should not access ruby objects in finalizer. [ruby-dev:28286] +Tue Feb 7 18:42:00 2006 Yukihiro Matsumoto + + * io.c (rb_write_error2): use fwrite(3) if rb_stderr is not + updated or is already freed. [ruby-dev:28313] + Mon Feb 6 16:02:51 2006 WATANABE Hirofumi * file.c (rb_thread_flock): ERROR_NOT_LOCKED is not an error on Cygwin. In such situation, flock() should return 0. +Mon Feb 6 14:36:29 2006 Yukihiro Matsumoto + + * eval.c (error_line): include the class name of a surrounding + method in error position description. + Mon Feb 6 00:14:57 2006 Yukihiro Matsumoto * enum.c (enum_find_index): a new method Enumerable#find_index. -- cgit