1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ruby.c (process_options): rejects dummy encoding.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14821 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2007-12-31 16:04:11 +00:00
parent 6cb161a66c
commit d64a975396
3 changed files with 12 additions and 5 deletions

View file

@ -1,3 +1,7 @@
Tue Jan 1 01:04:06 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ruby.c (process_options): rejects dummy encoding.
Mon Dec 31 23:53:55 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ruby.c (proc_options, process_options): delays finding encoding

3
ruby.c
View file

@ -969,6 +969,9 @@ process_options(VALUE arg)
if ((opt->enc_index = rb_enc_find_index(s)) < 0) {
rb_raise(rb_eRuntimeError, "unknown encoding name - %s", s);
}
else if (rb_enc_dummy_p(rb_enc_from_index(opt->enc_index))) {
rb_raise(rb_eRuntimeError, "dummy encoding is not acceptable - %s ", s);
}
}
if (opt->e_script) {
if (opt->enc_index >= 0)

View file

@ -1,15 +1,15 @@
#define RUBY_VERSION "1.9.0"
#define RUBY_RELEASE_DATE "2007-12-31"
#define RUBY_RELEASE_DATE "2008-01-01"
#define RUBY_VERSION_CODE 190
#define RUBY_RELEASE_CODE 20071231
#define RUBY_RELEASE_CODE 20080101
#define RUBY_PATCHLEVEL 0
#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 9
#define RUBY_VERSION_TEENY 0
#define RUBY_RELEASE_YEAR 2007
#define RUBY_RELEASE_MONTH 12
#define RUBY_RELEASE_DAY 31
#define RUBY_RELEASE_YEAR 2008
#define RUBY_RELEASE_MONTH 1
#define RUBY_RELEASE_DAY 1
#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];