зеркало из https://github.com/github/ruby.git
* 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:
Родитель
a2d85d61bd
Коммит
9a431fd58c
|
@ -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
4
ruby.c
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче