diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-23 01:42:53 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-23 01:42:53 +0000 |
| commit | 31e29e409cd06816f5529631541b5d21806b7fd0 (patch) | |
| tree | 1fc57383541bde18a7dbe61dfd67abd8e9cb22cf | |
| parent | b294a022671fd6740e7f3a42ce19dbaa11dd7d6c (diff) | |
| download | ruby-31e29e409cd06816f5529631541b5d21806b7fd0.tar.gz ruby-31e29e409cd06816f5529631541b5d21806b7fd0.tar.xz ruby-31e29e409cd06816f5529631541b5d21806b7fd0.zip | |
* ruby.c (process_options): encoding set by command line option takes
priority over the encoding in the source, as the primary encoding.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13756 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | ruby.c | 9 |
2 files changed, 13 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue Oct 23 10:42:51 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * ruby.c (process_options): encoding set by command line option takes + priority over the encoding in the source, as the primary encoding. + Mon Oct 22 11:03:09 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> * encoding.c (enc_check_encoding): returns index now. @@ -843,6 +843,7 @@ process_options(VALUE arg) char **argv = opt->argv; NODE *tree = 0; VALUE parser; + VALUE encoding; const char *s; int i = proc_options(argc, argv, opt); @@ -970,7 +971,13 @@ process_options(VALUE arg) } } - rb_set_primary_encoding(rb_parser_encoding(parser)); + if (opt->enc_index >= 0) { + encoding = rb_enc_from_encoding(rb_enc_from_index(opt->enc_index)); + } + else { + encoding = rb_parser_encoding(parser); + } + rb_set_primary_encoding(encoding); return (VALUE)tree; } |
