ruby-changes:1964
From: ko1@a...
Date: 17 Sep 2007 04:51:51 +0900
Subject: [ruby-changes:1964] shyouhei - Ruby:r13455 (ruby_1_8_5): * ruby.c (proc_options): -W should be allowed in RUBYOPT
shyouhei 2007-09-17 04:51:38 +0900 (Mon, 17 Sep 2007) New Revision: 13455 Modified files: branches/ruby_1_8_5/ChangeLog branches/ruby_1_8_5/ruby.c branches/ruby_1_8_5/version.h Log: * ruby.c (proc_options): -W should be allowed in RUBYOPT environment variable. [ruby-core:12118] http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8_5/version.h?r1=13455&r2=13454 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8_5/ruby.c?r1=13455&r2=13454 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8_5/ChangeLog?r1=13455&r2=13454 Index: ruby_1_8_5/ChangeLog =================================================================== --- ruby_1_8_5/ChangeLog (revision 13454) +++ ruby_1_8_5/ChangeLog (revision 13455) @@ -1,3 +1,8 @@ +Mon Sep 17 04:47:02 2007 Yukihiro Matsumoto <matz@r...> + + * ruby.c (proc_options): -W should be allowed in RUBYOPT + environment variable. [ruby-core:12118] + Mon Sep 17 04:31:46 2007 Yukihiro Matsumoto <matz@r...> * range.c (range_step): fixed integer overflow. [ruby-dev:31763] Index: ruby_1_8_5/version.h =================================================================== --- ruby_1_8_5/version.h (revision 13454) +++ ruby_1_8_5/version.h (revision 13455) @@ -2,7 +2,7 @@ #define RUBY_RELEASE_DATE "2007-09-17" #define RUBY_VERSION_CODE 185 #define RUBY_RELEASE_CODE 20070917 -#define RUBY_PATCHLEVEL 110 +#define RUBY_PATCHLEVEL 111 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 Index: ruby_1_8_5/ruby.c =================================================================== --- ruby_1_8_5/ruby.c (revision 13454) +++ ruby_1_8_5/ruby.c (revision 13455) @@ -775,7 +775,7 @@ } } if (!*s) break; - if (!strchr("IdvwrK", *s)) + if (!strchr("IdvwWrK", *s)) rb_raise(rb_eRuntimeError, "illegal switch in RUBYOPT: -%c", *s); s = moreswitches(s); } -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml