aboutsummaryrefslogtreecommitdiffstats
path: root/ruby.c
diff options
context:
space:
mode:
Diffstat (limited to 'ruby.c')
-rw-r--r--ruby.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/ruby.c b/ruby.c
index d8e698c073..e3b700bdc1 100644
--- a/ruby.c
+++ b/ruby.c
@@ -1151,8 +1151,12 @@ load_file(VALUE parser, const char *fname, int script, struct cmdline_options *o
}
require_libraries(); /* Why here? unnatural */
}
- if (opt->enc_index >= 0) rb_enc_associate_index(f, opt->enc_index);
- else rb_enc_associate(f, rb_locale_encoding());
+ if (opt->enc_index >= 0) {
+ rb_enc_associate_index(f, opt->enc_index);
+ }
+ else if (f == rb_stdin) {
+ rb_enc_associate(f, rb_locale_encoding());
+ }
tree = (NODE *)rb_parser_compile_file(parser, fname, f, line_start);
if (script && rb_parser_end_seen_p(parser)) {
rb_define_global_const("DATA", f);