diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-12 14:14:32 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-12 14:14:32 +0000 |
| commit | a8656ef8df3871edc10728bc82a5874464bd6e92 (patch) | |
| tree | 66ad1f56b06d1c1c2ac51ffde324e6345fc8ac69 | |
| parent | df6e07822bf0748e9ec6c2f227ce531203c6db38 (diff) | |
| download | ruby-a8656ef8df3871edc10728bc82a5874464bd6e92.tar.gz ruby-a8656ef8df3871edc10728bc82a5874464bd6e92.tar.xz ruby-a8656ef8df3871edc10728bc82a5874464bd6e92.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/trunk@13432 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | ruby.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Wed Sep 12 23:12:22 2007 Yukihiro Matsumoto <matz@ruby-lang.org> + + * ruby.c (proc_options): -W should be allowed in RUBYOPT + environment variable. [ruby-core:12118] + Wed Sep 12 15:19:04 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> * io.c (rb_io_s_sysopen): should not use alloca for unknowen size @@ -821,7 +821,7 @@ proc_options(int argc, char **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); |
