From debf296843ff21324d710163a0e49a074c85d4b3 Mon Sep 17 00:00:00 2001 From: Yukihiro Matsumoto Date: Tue, 12 Jun 2012 10:22:56 +0900 Subject: remove obsolete comment --- src/string.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src') diff --git a/src/string.c b/src/string.c index 340402e26..172b8422c 100644 --- a/src/string.c +++ b/src/string.c @@ -2213,7 +2213,6 @@ mrb_str_split_m(mrb_state *mrb, mrb_value str) while (ptr < eptr && (end = mrb_memsearch(sptr, slen, ptr, eptr - ptr)) >= 0) { - /* Check we are at the start of a char */ mrb_ary_push(mrb, result, mrb_str_subseq(mrb, str, ptr - temp, end)); ptr += end + slen; if (lim >= 0 && lim <= ++i) break; -- cgit v1.2.3