From 9ed35ae7930c57b63b218cda716fcf01aa56ac88 Mon Sep 17 00:00:00 2001 From: matz Date: Sun, 12 Oct 2008 23:03:17 +0000 Subject: [PATCH] * ruby.c (proc_options): add -U command line option to specify utf-8 as default_internal. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19766 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ ruby.c | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 33f32c9ad8..9a3223bcd7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Oct 13 07:54:00 2008 Yukihiro Matsumoto + + * ruby.c (proc_options): add -U command line option to specify + utf-8 as default_internal. + Mon Oct 13 07:42:57 2008 Yukihiro Matsumoto * transcode.c (str_transcode0): String#encode() with no encoding diff --git a/ruby.c b/ruby.c index 67b5a4fd3a..0b4929d88a 100644 --- a/ruby.c +++ b/ruby.c @@ -758,6 +758,10 @@ proc_options(int argc, char **argv, struct cmdline_options *opt) if (!*++s) goto next_encoding; goto encoding; + case 'U': + opt->intern.enc.name = rb_str_new2("utf-8"); + break; + case 'K': if (*++s) { const char *enc_name = 0;