diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-12 23:03:17 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-12 23:03:17 +0000 |
| commit | e3f9f0794c488635b1c3eef2ebb11f3360edadbb (patch) | |
| tree | b502133080e0b1534e7419f61ea1c9cf99718d2c | |
| parent | 8af9b261dc1bee676b7a8979bd995fcfa0134baf (diff) | |
| download | ruby-e3f9f0794c488635b1c3eef2ebb11f3360edadbb.tar.gz ruby-e3f9f0794c488635b1c3eef2ebb11f3360edadbb.tar.xz ruby-e3f9f0794c488635b1c3eef2ebb11f3360edadbb.zip | |
* ruby.c (proc_options): add -U command line option to specify
utf-8 as default_internal.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19766 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | ruby.c | 4 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Mon Oct 13 07:54:00 2008 Yukihiro Matsumoto <matz@ruby-lang.org> + + * 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 <matz@ruby-lang.org> * transcode.c (str_transcode0): String#encode() with no encoding @@ -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; |
