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

string.c: adjust style [ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58897 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-05-26 06:39:06 +00:00
parent 2881374caf
commit a77cb8c80f

View file

@ -2937,7 +2937,8 @@ rb_str_concat_multi(int argc, VALUE *argv, VALUE str)
if (argc == 1) {
return rb_str_concat(str, argv[0]);
} else if (argc > 1) {
}
else if (argc > 1) {
int i;
VALUE arg_str = rb_str_tmp_new(0);
rb_enc_copy(arg_str, str);