1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

enumerator.c: adjust style [ci skip]

* enumerator.c (yielder_yield_push): Insert a break after the
  method return value.  [fix GH-617]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46071 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-05-24 06:05:35 +00:00
parent bdf98fc627
commit abfa2b6c7e
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Sat May 24 15:05:32 2014 yui-knk <spiketeika@gmail.com>
* enumerator.c (yielder_yield_push): Insert a break after the
method return value. [fix GH-617]
Sat May 24 14:59:12 2014 Tanaka Akira <akr@fsij.org>
* test/lib/minitest: Remove comments not appropriate now.

View file

@ -1140,7 +1140,8 @@ yielder_yield(VALUE obj, VALUE args)
}
/* :nodoc: */
static VALUE yielder_yield_push(VALUE obj, VALUE args)
static VALUE
yielder_yield_push(VALUE obj, VALUE args)
{
yielder_yield(obj, args);
return obj;