зеркало из https://github.com/github/ruby.git
* compile.c (ibf_load_object_string): use fstring if frozen string.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53191 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
66cfd1310c
Коммит
9d30ef596c
|
@ -1,3 +1,7 @@
|
|||
Fri Dec 18 17:24:09 2015 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* compile.c (ibf_load_object_string): use fstring if frozen string.
|
||||
|
||||
Fri Dec 18 16:54:38 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/stringio/stringio.c (strio_set_encoding): add StringIO's own
|
||||
|
|
|
@ -7650,7 +7650,7 @@ ibf_load_object_string(const struct ibf_load *load, const struct ibf_object_head
|
|||
rb_enc_associate_index(str, encindex);
|
||||
|
||||
if (header->internal) rb_obj_hide(str);
|
||||
if (header->frozen) rb_obj_freeze(str);
|
||||
if (header->frozen) str = rb_fstring(str);
|
||||
|
||||
return str;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче