From cbad6bc357cf51a3f42115b8dd66db13068f3602 Mon Sep 17 00:00:00 2001 From: nagai Date: Fri, 13 Nov 2009 18:36:38 +0000 Subject: * ext/tk/lib/tk/variable.rb: TkVariable#*(other) and /(other) have a bug on handling of the "other" value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25754 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/tk/lib/tk/variable.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext') diff --git a/ext/tk/lib/tk/variable.rb b/ext/tk/lib/tk/variable.rb index f6ebe551fb..7290658bf8 100644 --- a/ext/tk/lib/tk/variable.rb +++ b/ext/tk/lib/tk/variable.rb @@ -1218,7 +1218,7 @@ end end end def *(other) - num_or_str(self._value) * other.to_i + num_or_str(self._value) * other #begin # number(self._value) * other #rescue @@ -1229,7 +1229,7 @@ end number(self._value) / other end def %(other) - num_or_str(self._value) % other.to_i + num_or_str(self._value) % other #begin # number(self._value) % other #rescue -- cgit v1.2.3