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 default_external before loading

libraries. [ruby-dev:33801]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15496 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2008-02-15 23:03:22 +00:00
parent a2d85d61bd
commit 9a431fd58c
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Sat Feb 16 08:00:01 2008 NARUSE, Yui <naruse@ruby-lang.org>
* ruby.c (process_options): set default_external before loading
libraries. [ruby-dev:33801]
Sat Feb 16 05:49:54 2008 NARUSE, Yui <naruse@ruby-lang.org>
* enc/iso_8859_{4,13}.c: Windows-1257 is replica of ISO-8859-13.

4
ruby.c
View file

@ -1010,6 +1010,8 @@ process_options(VALUE arg)
else {
enc = rb_locale_encoding();
}
rb_enc_set_default_external(rb_enc_from_encoding(enc));
if (opt->e_script) {
rb_encoding *eenc;
if (opt->src.enc.index >= 0) {
@ -1053,8 +1055,6 @@ process_options(VALUE arg)
}
}
rb_enc_set_default_external(rb_enc_from_encoding(enc));
return (VALUE)tree;
}