diff options
| author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-16 19:52:55 +0000 |
|---|---|---|
| committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-16 19:52:55 +0000 |
| commit | cf85b8aa0b57cd965798f2137b9788fa6f2fd57d (patch) | |
| tree | 1bb807a171af97e3d4c3731c9940ef1fa76253cf | |
| parent | 44d7e879f5faa970ee98b7c8d512edbfa17fa34d (diff) | |
| download | ruby-cf85b8aa0b57cd965798f2137b9788fa6f2fd57d.tar.gz ruby-cf85b8aa0b57cd965798f2137b9788fa6f2fd57d.tar.xz ruby-cf85b8aa0b57cd965798f2137b9788fa6f2fd57d.zip | |
* ruby.c (proc_options): -W should be allowed in RUBYOPT
environment variable. [ruby-core:12118]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@13457 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | ruby.c | 2 | ||||
| -rw-r--r-- | version.h | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Mon Sep 17 04:52:21 2007 Yukihiro Matsumoto <matz@ruby-lang.org> + + * ruby.c (proc_options): -W should be allowed in RUBYOPT + environment variable. [ruby-core:12118] + Mon Sep 17 04:37:10 2007 Yukihiro Matsumoto <matz@ruby-lang.org> * range.c (range_step): fixed integer overflow. [ruby-dev:31763] @@ -775,7 +775,7 @@ proc_options(argc, argv) } } if (!*s) break; - if (!strchr("IdvwrK", *s)) + if (!strchr("IdvwWrK", *s)) rb_raise(rb_eRuntimeError, "illegal switch in RUBYOPT: -%c", *s); s = moreswitches(s); } @@ -2,7 +2,7 @@ #define RUBY_RELEASE_DATE "2007-09-17" #define RUBY_VERSION_CODE 186 #define RUBY_RELEASE_CODE 20070917 -#define RUBY_PATCHLEVEL 102 +#define RUBY_PATCHLEVEL 103 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 |
