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

* ruby.c (process_options): set initial default_external before -r.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22086 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2009-02-06 03:12:09 +00:00
parent 5067bfe36e
commit 03c7332241
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Fri Feb 6 12:11:24 2009 NAKAMURA Usaku <usa@ruby-lang.org>
* ruby.c (process_options): set initial default_external before -r.
Fri Feb 6 12:03:47 2009 NAKAMURA Usaku <usa@ruby-lang.org>
* ruby.c (process_options): -K and -E in shebang should be reflect to

7
ruby.c
View file

@ -1296,6 +1296,13 @@ process_options(VALUE arg)
opt->src.enc.index = opt_enc_index(opt->src.enc.name);
src_encoding_index = opt->src.enc.index;
}
if (opt->ext.enc.index >= 0) {
enc = rb_enc_from_index(opt->ext.enc.index);
}
else {
enc = lenc;
}
rb_enc_set_default_external(rb_enc_from_encoding(enc));
if (opt->intern.enc.index >= 0) {
enc = rb_enc_from_index(opt->intern.enc.index);
rb_enc_set_default_internal(rb_enc_from_encoding(enc));