From fbcc6dea0c86e7e4d087f1d4b2de19b211d16647 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 12 Sep 2000 05:37:38 +0000 Subject: matz: 1.6.0 final (hopufully) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@934 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compar.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'compar.c') diff --git a/compar.c b/compar.c index 3c5af84ff9..3cebc30a80 100644 --- a/compar.c +++ b/compar.c @@ -33,14 +33,6 @@ cmp_failed() return Qfalse; } -static VALUE -cmp_eq2(a) - VALUE *a; -{ - return rb_rescue2(cmp_eq, (VALUE)a, cmp_failed, 0, - rb_eStandardError, rb_eNameError, 0); -} - static VALUE cmp_equal(x, y) VALUE x, y; @@ -50,7 +42,8 @@ cmp_equal(x, y) if (x == y) return Qtrue; a[0] = x; a[1] = y; - return rb_rescue2(cmp_eq2, (VALUE)a, cmp_failed, 0, rb_eScriptError, 0); + return rb_rescue2(cmp_eq, (VALUE)a, cmp_failed, 0, + rb_eStandardError, rb_eNameError, 0); } static VALUE -- cgit v1.2.3