aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-30 04:50:04 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-30 04:50:04 +0000
commitcced56ef7c45d74fb1593e18f7137c144d8b8b44 (patch)
treedf55d54a7eb8949709cdeaadaa52b98c60e117a1 /lib
parent0711cf3cd8f890de7ba4cfb5936d6849a5f2d948 (diff)
downloadruby-cced56ef7c45d74fb1593e18f7137c144d8b8b44.tar.gz
* misc/ruby-mode.el (ruby-expr-beg): support $! at the end of
expression. [ruby-dev:27868] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9634 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/complex.rb9
-rw-r--r--lib/drb/drb.rb2
-rw-r--r--lib/xmlrpc/datetime.rb2
3 files changed, 4 insertions, 9 deletions
diff --git a/lib/complex.rb b/lib/complex.rb
index 9300f391e8..110a28ee7e 100644
--- a/lib/complex.rb
+++ b/lib/complex.rb
@@ -305,13 +305,8 @@ class Complex < Numeric
Complex(@real, -@image)
end
alias conj conjugate
-
- #
- # Compares the absolute values of the two numbers.
- #
- def <=> (other)
- self.abs <=> other.abs
- end
+
+ undef <=>
#
# Test for numerical equality (<tt>a == a + 0<i>i</i></tt>).
diff --git a/lib/drb/drb.rb b/lib/drb/drb.rb
index 689416ac70..4c46909500 100644
--- a/lib/drb/drb.rb
+++ b/lib/drb/drb.rb
@@ -1549,7 +1549,7 @@ module DRb
end
ary.collect(&@obj)[0]
else
- @obj.__send__(@msg_id, *@argv)
+ @obj.funcall(@msg_id, *@argv)
end
end
diff --git a/lib/xmlrpc/datetime.rb b/lib/xmlrpc/datetime.rb
index 298263fe8a..f66ef8963a 100644
--- a/lib/xmlrpc/datetime.rb
+++ b/lib/xmlrpc/datetime.rb
@@ -127,7 +127,7 @@ class DateTime
end
def ==(o)
- Array(self) == Array(o)
+ self.to_a == Array(o) rescue false
end
end