From 20f5f4816288b7344bcfaca128f32dc14a60c51a Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 14 Nov 2002 06:18:59 +0000 Subject: * math.c (math_acos): check errno after operation. ditto for asin, acosh, atanh, log, log10 and sqrt. * eval.c (rb_add_method): initialize should always be private. * parse.y (expr): add rescue modifier rule. * parse.y (command_call): return, break and next with argument is now part of this rule. * parse.y (yylex): "a" in "a /5" should be considered as a local variable. [experimental] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3041 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 93eadaeef..732a36c88 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +Thu Nov 14 08:23:42 2002 Yukihiro Matsumoto + + * math.c (math_acos): check errno after operation. ditto for + asin, acosh, atanh, log, log10 and sqrt. + + * eval.c (rb_add_method): initialize should always be private. + + * parse.y (expr): add rescue modifier rule. + + * parse.y (command_call): return, break and next with argument is + now part of this rule. + Wed Nov 13 16:22:38 2002 Nobuyoshi Nakada * configure.in (DLDFLAGS): removed -Wl,-no-undefined to @@ -29,6 +41,11 @@ Sat Nov 9 11:39:45 2002 Nobuyoshi Nakada * eval.c: remove ENABLE_TRACE/DISABLE_TRACE to trace child nodes of c-call. [ruby-dev:18699] +Fri Nov 8 04:16:55 2002 Yukihiro Matsumoto + + * parse.y (yylex): "a" in "a /5" should be considered as a local + variable. [experimental] + Thu Nov 7 09:51:37 2002 Nobuyoshi Nakada * eval.c (rb_yield_0): should enable trace for non-cfunc nodes. -- cgit