From a2fc608087a3ffd347bab13e9029968e0bd66fa1 Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 22 Sep 2006 09:08:58 +0000 Subject: * string.c (rb_str_partition): no need to call rb_call_super(), since String is no longer includes Enumerable. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10994 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- string.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'string.c') diff --git a/string.c b/string.c index a8ff285c7d..8cd93a69b5 100644 --- a/string.c +++ b/string.c @@ -4424,14 +4424,11 @@ rb_str_center(int argc, VALUE *argv, VALUE str) */ static VALUE -rb_str_partition(int argc, VALUE *argv, VALUE str) +rb_str_partition(VALUE str, VALUE sep) { - VALUE sep; long pos; int regex = Qfalse; - if (argc == 0) return rb_call_super(argc, argv); - rb_scan_args(argc, argv, "1", &sep); if (TYPE(sep) == T_REGEXP) { pos = rb_reg_search(sep, str, 0, 0); regex = Qtrue; @@ -4938,7 +4935,7 @@ Init_String(void) rb_define_method(rb_cString, "slice", rb_str_aref_m, -1); rb_define_method(rb_cString, "slice!", rb_str_slice_bang, -1); - rb_define_method(rb_cString, "partition", rb_str_partition, -1); + rb_define_method(rb_cString, "partition", rb_str_partition, 1); rb_define_method(rb_cString, "rpartition", rb_str_rpartition, 1); id_to_s = rb_intern("to_s"); -- cgit v1.2.3