ruby-changes:42288
From: naruse <ko1@a...>
Date: Tue, 29 Mar 2016 14:57:45 +0900 (JST)
Subject: [ruby-changes:42288] naruse:r54362 (ruby_2_3): merge revision(s) 53790, 53844: [Backport #12054]
naruse 2016-03-29 14:57:39 +0900 (Tue, 29 Mar 2016) New Revision: 54362 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=54362 Log: merge revision(s) 53790,53844: [Backport #12054] * lib/logger.rb: Remove block from Logger.add as it's not needed patch provided by Daniel Lobato Garc?\239?\190?\131?\239?\189?\173 [fix GH-1240] [Bug #12054] patch provided by Daniel Lobato Garcia [fix GH-1240] [Bug #12054] Modified directories: branches/ruby_2_3/ Modified files: branches/ruby_2_3/ChangeLog branches/ruby_2_3/lib/logger.rb branches/ruby_2_3/version.h Index: ruby_2_3/ChangeLog =================================================================== --- ruby_2_3/ChangeLog (revision 54361) +++ ruby_2_3/ChangeLog (revision 54362) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/ChangeLog#L1 +Tue Mar 29 14:53:58 2016 Naotoshi Seo <sonots@g...> + + * lib/logger.rb: Remove block from Logger.add as it's not needed + patch provided by Daniel Lobato Garcia [fix GH-1240] [Bug #12054] + Tue Mar 29 14:52:20 2016 Zachary Scott <zzak@r...> * re.c: Remove deprecated kcode argument from Regexp.new and compile Index: ruby_2_3/lib/logger.rb =================================================================== --- ruby_2_3/lib/logger.rb (revision 54361) +++ ruby_2_3/lib/logger.rb (revision 54362) @@ -416,7 +416,7 @@ class Logger https://github.com/ruby/ruby/blob/trunk/ruby_2_3/lib/logger.rb#L416 # * Append open does not need to lock file. # * If the OS supports multi I/O, records possibly may be mixed. # - def add(severity, message = nil, progname = nil, &block) + def add(severity, message = nil, progname = nil) severity ||= UNKNOWN if @logdev.nil? or severity < @level return true Index: ruby_2_3/version.h =================================================================== --- ruby_2_3/version.h (revision 54361) +++ ruby_2_3/version.h (revision 54362) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/version.h#L1 #define RUBY_VERSION "2.3.0" #define RUBY_RELEASE_DATE "2016-03-29" -#define RUBY_PATCHLEVEL 19 +#define RUBY_PATCHLEVEL 20 #define RUBY_RELEASE_YEAR 2016 #define RUBY_RELEASE_MONTH 3 Property changes on: ruby_2_3 ___________________________________________________________________ Modified: svn:mergeinfo Merged /trunk:r53790,53844 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/