ruby-changes:37172
From: usa <ko1@a...>
Date: Wed, 14 Jan 2015 16:53:48 +0900 (JST)
Subject: [ruby-changes:37172] usa:r49253 (ruby_2_0_0): merge revision(s) 49034: [Backport #10662]
usa 2015-01-14 16:53:32 +0900 (Wed, 14 Jan 2015) New Revision: 49253 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=49253 Log: merge revision(s) 49034: [Backport #10662] * ext/tk/lib/tkextlib/tcllib/plotchart.rb: fix to invoke correct function of tcllib. Patch by @zalt50 [fix GH-787] Modified directories: branches/ruby_2_0_0/ Modified files: branches/ruby_2_0_0/ChangeLog branches/ruby_2_0_0/ext/tk/lib/tkextlib/tcllib/plotchart.rb branches/ruby_2_0_0/version.h Index: ruby_2_0_0/ChangeLog =================================================================== --- ruby_2_0_0/ChangeLog (revision 49252) +++ ruby_2_0_0/ChangeLog (revision 49253) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/ChangeLog#L1 +Wed Jan 14 16:53:14 2015 SHIBATA Hiroshi <shibata.hiroshi@g...> + + * ext/tk/lib/tkextlib/tcllib/plotchart.rb: fix to invoke correct function + of tcllib. Patch by @zalt50 [fix GH-787] + Wed Jan 14 16:48:15 2015 Tanaka Akira <akr@f...> * lib/resolv.rb (Resolv::DNS::Name#==): Compare an array of Label:Str Index: ruby_2_0_0/ext/tk/lib/tkextlib/tcllib/plotchart.rb =================================================================== --- ruby_2_0_0/ext/tk/lib/tkextlib/tcllib/plotchart.rb (revision 49252) +++ ruby_2_0_0/ext/tk/lib/tkextlib/tcllib/plotchart.rb (revision 49253) @@ -142,7 +142,7 @@ module Tk::Tcllib::Plotchart https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/ext/tk/lib/tkextlib/tcllib/plotchart.rb#L142 end def self.pixel_to_coords(w, x, y) - list(tk_call_without_enc('::Plotchart::coordsToPixel', w.path, x, y)) + list(tk_call_without_enc('::Plotchart::pixelToCoords', w.path, x, y)) end def self.determine_scale(*args) # (xmin, xmax, inverted=false) @@ -311,7 +311,7 @@ module Tk::Tcllib::Plotchart https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/ext/tk/lib/tkextlib/tcllib/plotchart.rb#L311 end def pixel_to_coords(x, y) - list(tk_call_without_enc('::Plotchart::coordsToPixel', @path, x, y)) + list(tk_call_without_enc('::Plotchart::pixelToCoords', @path, x, y)) end def determine_scale(xmax, ymax) Index: ruby_2_0_0/version.h =================================================================== --- ruby_2_0_0/version.h (revision 49252) +++ ruby_2_0_0/version.h (revision 49253) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/version.h#L1 #define RUBY_VERSION "2.0.0" #define RUBY_RELEASE_DATE "2015-01-14" -#define RUBY_PATCHLEVEL 613 +#define RUBY_PATCHLEVEL 614 #define RUBY_RELEASE_YEAR 2015 #define RUBY_RELEASE_MONTH 1 Property changes on: ruby_2_0_0 ___________________________________________________________________ Modified: svn:mergeinfo Merged /trunk:r49034 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/