From b88714dc096f539d09092124fe089d0a52bf5133 Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 10 Mar 2004 08:21:07 +0000 Subject: * eval.c (return_jump): set return value to the return destination. separated from localjump_destination(). * eval.c (break_jump): break innermost loop (or thread or proc). * eval.c (rb_yield_0): set exit_value for block break. * eval.c (eval): Only print backtrace if generating the backtrace doesn't generate an exception. [ruby-core:02621] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5936 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index f3389f7b5..4fbcb46a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,22 @@ +Wed Mar 10 16:28:42 2004 Yukihiro Matsumoto + + * eval.c (return_jump): set return value to the return + destination. separated from localjump_destination(). + + * eval.c (break_jump): break innermost loop (or thread or proc). + + * eval.c (rb_yield_0): set exit_value for block break. + +Wed Mar 10 15:58:43 2004 Ryan Davis + + * eval.c (eval): Only print backtrace if generating the backtrace + doesn't generate an exception. [ruby-core:02621] + +Tue Mar 9 13:04:26 2004 Yukihiro Matsumoto + + * io.c (rb_io_ungetc): raise IOError instead of calling + rb_sys_fail(). [ruby-talk:23181] + Mon Mar 8 19:32:28 2004 akira yamada * lib/uri/common.rb (URI::REGEXP::PATTERN::HOSTPORT): (?:#{PORT}) @@ -149,6 +168,11 @@ Sat Feb 21 11:12:15 2004 Nobuyoshi Nakada * missing/os2.c, missing/x68.c: typo fix. pointed out by greentea. +Fri Feb 20 18:59:47 2004 Yukihiro Matsumoto + + * lib/irb/init.rb (IRB::IRB.parse_opts): add -I option to + irb. [ruby-dev:39243] + Thu Feb 19 23:24:16 2004 Dave Thomas * lib/rdoc/generators/html_generator.rb (Generators::HtmlClass::build_attribute_list): @@ -201,6 +225,16 @@ Wed Feb 18 17:18:01 2004 WATANABE Hirofumi * ext/win32ole/win32ole.c: need to include on Cygwin. +Wed Feb 18 10:40:38 2004 Yukihiro Matsumoto + + * sprintf.c (rb_f_sprintf): do not prepend dots for negative + numbers if FZERO is specified. [ruby-dev:39218] + +Tue Feb 17 23:40:34 2004 Guy Decoux + + * sprintf.c (rb_f_sprintf): preserve original val for + format_integer. [ruby-talk:92975] + Tue Feb 17 23:28:45 2004 NAKAMURA, Hiroshi * test/ruby/marshaltestlib.rb: common marshal testcase added. -- cgit