From 553a8735cf838da0688e435bacf305966d7f7261 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 21 Oct 2004 15:21:08 +0000 Subject: * string.c (rb_str_include): should not treat char as negative value. [ruby-dev:24558] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7096 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- string.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'string.c') diff --git a/string.c b/string.c index e2f7fab1e..bcdd6c3c2 100644 --- a/string.c +++ b/string.c @@ -2422,15 +2422,8 @@ rb_str_include(str, arg) long i; if (FIXNUM_P(arg)) { - int c = FIX2INT(arg); - long len = RSTRING(str)->len; - char *p = RSTRING(str)->ptr; - - for (i=0; iptr, FIX2INT(arg), RSTRING(str)->len)) + return Qtrue; return Qfalse; } -- cgit