mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* encoding.c (rb_enc_set_index, rb_enc_associate_index): should
check if frozen. * parse.y (rb_intern3), ruby.c (process_options, ruby_script): defer freezing after associating encodings. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32435 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f4ca906d5c
commit
cfa0035962
6 changed files with 49 additions and 7 deletions
13
ext/-test-/string/enc_associate.c
Normal file
13
ext/-test-/string/enc_associate.c
Normal file
|
@ -0,0 +1,13 @@
|
|||
#include "ruby.h"
|
||||
|
||||
VALUE
|
||||
bug_str_enc_associate(VALUE str, VALUE enc)
|
||||
{
|
||||
return rb_enc_associate(str, rb_to_encoding(enc));
|
||||
}
|
||||
|
||||
void
|
||||
Init_enc_associate(VALUE klass)
|
||||
{
|
||||
rb_define_method(klass, "associate_encoding!", bug_str_enc_associate, 1);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue