summaryrefslogtreecommitdiff
path: root/lib/mathn.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-12-19 17:29:09 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-12-19 17:29:09 +0000
commite6f473c3a0c8f3a70595ca58d1aa0b59a3996a90 (patch)
treebfeda74860fbad889193523c115b41d54ba45d63 /lib/mathn.rb
parent5076ed519b124df90b2348f012d120e25e3820e0 (diff)
* misc/ruby-mode.el (ruby-calculate-indent): proper indentation
inside of parentheses. [ruby-dev:22308] * hash.c (delete_if_i): do not use ST_DELETE for thread safety. [ruby-dev:21899] (not fully solved) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5223 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/mathn.rb')
-rw-r--r--lib/mathn.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mathn.rb b/lib/mathn.rb
index 26dd0b4a27..2257a4074a 100644
--- a/lib/mathn.rb
+++ b/lib/mathn.rb
@@ -125,7 +125,7 @@ class Rational
def ** (other)
if other.kind_of?(Rational)
if self < 0
- return Complex(self, 0) ** other
+ return Complex.new!(self, 0) ** other
elsif other == 0
return Rational(1,1)
elsif self == 0