From a8656ef8df3871edc10728bc82a5874464bd6e92 Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 12 Sep 2007 14:14:32 +0000 Subject: * 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 --- ruby.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ruby.c') diff --git a/ruby.c b/ruby.c index ad3c17297..86230735c 100644 --- a/ruby.c +++ b/ruby.c @@ -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); -- cgit