aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-16 12:29:23 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-16 12:29:23 +0000
commitffd76ff3b5212977c593f209484f8a72e823d449 (patch)
treec5294999d76b4c61c46e1e181a0a2ca0a391c3d8 /string.c
parentdb2fe4b8ef549c0794a54178a3e6b2bdd88a6291 (diff)
downloadruby-ffd76ff3b5212977c593f209484f8a72e823d449.tar.gz
string.c: remove redundant calls
* string.c (rb_str_enumerate_lines): do not check if a block is given twice. RETURN_ENUMERATOR includes rb_block_given_p() check which is redundant here. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51266 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/string.c b/string.c
index 941fb4b4f0..e33ef1775e 100644
--- a/string.c
+++ b/string.c
@@ -6709,7 +6709,7 @@ rb_str_enumerate_lines(int argc, VALUE *argv, VALUE str, int wantarray)
if (wantarray)
ary = rb_ary_new();
else
- RETURN_ENUMERATOR(str, argc, argv);
+ return SIZED_ENUMERATOR(str, argc, argv, 0);
}
if (NIL_P(rs)) {