ruby-changes:5628
From: shyouhei <ko1@a...>
Date: Fri, 13 Jun 2008 12:10:29 +0900 (JST)
Subject: [ruby-changes:5628] Ruby:r17135 (ruby_1_8_6): merge revision(s) 15425:
shyouhei 2008-06-13 12:10:19 +0900 (Fri, 13 Jun 2008) New Revision: 17135 Modified files: branches/ruby_1_8_6/ChangeLog branches/ruby_1_8_6/lib/benchmark.rb branches/ruby_1_8_6/version.h Log: merge revision(s) 15425: * lib/benchmark.rb (Job::Benchmark#item): fix typo. http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8_6/ChangeLog?r1=17135&r2=17134&diff_format=u http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8_6/version.h?r1=17135&r2=17134&diff_format=u http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8_6/lib/benchmark.rb?r1=17135&r2=17134&diff_format=u Index: ruby_1_8_6/ChangeLog =================================================================== --- ruby_1_8_6/ChangeLog (revision 17134) +++ ruby_1_8_6/ChangeLog (revision 17135) @@ -1,3 +1,7 @@ +Fri Jun 13 12:10:13 2008 NARUSE, Yui <naruse@r...> + + * lib/benchmark.rb (Job::Benchmark#item): fix typo. + Fri Jun 13 12:06:17 2008 Nobuyoshi Nakada <nobu@r...> * ext/bigdecimal/bigdecimal.c (BigDecimal_to_f): use strtod() for more Index: ruby_1_8_6/version.h =================================================================== --- ruby_1_8_6/version.h (revision 17134) +++ ruby_1_8_6/version.h (revision 17135) @@ -2,7 +2,7 @@ #define RUBY_RELEASE_DATE "2008-06-13" #define RUBY_VERSION_CODE 186 #define RUBY_RELEASE_CODE 20080613 -#define RUBY_PATCHLEVEL 173 +#define RUBY_PATCHLEVEL 174 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 Index: ruby_1_8_6/lib/benchmark.rb =================================================================== --- ruby_1_8_6/lib/benchmark.rb (revision 17134) +++ ruby_1_8_6/lib/benchmark.rb (revision 17135) @@ -333,7 +333,7 @@ # Registers the given label and block pair in the job list. # def item(label = "", &blk) # :yield: - raise ArgmentError, "no block" unless block_given? + raise ArgumentError, "no block" unless block_given? label.concat ' ' w = label.length @width = w if @width < w -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/