summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-10 01:37:25 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-10 01:37:25 +0000
commit9b421423669a6f4b639a372d019f2add60a260b0 (patch)
tree746208863e79a4fe2edc49b1035102932b8bc28d
parent38a63b25bc3c23b918ff486b1637cd8c6f24d223 (diff)
* bignum.c (rb_big_coerce): allow bignum x bignum coercing.
[ruby-dev:26778] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8962 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--bignum.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d7141ff4dc..c79a4bd321 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -34,6 +34,11 @@ Tue Aug 9 15:12:04 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/lib/tkextlib/*: support to treat tkvariable-type
configure options.
+Tue Aug 9 20:30:19 2005 Tadashi Saito <shiba@mail2.accsnet.ne.jp>
+
+ * bignum.c (rb_big_coerce): allow bignum x bignum coercing.
+ [ruby-dev:26778]
+
Mon Aug 8 20:43:02 2005 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp>
* test/ruby/test_method.rb: added. [ruby-dev:26761]
diff --git a/bignum.c b/bignum.c
index 948e162345..33969c400c 100644
--- a/bignum.c
+++ b/bignum.c
@@ -1969,6 +1969,9 @@ rb_big_coerce(x, y)
if (FIXNUM_P(y)) {
return rb_assoc_new(rb_int2big(FIX2LONG(y)), x);
}
+ else if (TYPE(y) == T_BIGNUM) {
+ return rb_assoc_new(y, x);
+ }
else {
rb_raise(rb_eTypeError, "can't coerce %s to Bignum",
rb_obj_classname(y));