ruby-changes:1966
From: ko1@a...
Date: 17 Sep 2007 04:53:03 +0900
Subject: [ruby-changes:1966] shyouhei - Ruby:r13457 (ruby_1_8_6): * ruby.c (proc_options): -W should be allowed in RUBYOPT
shyouhei 2007-09-17 04:52:55 +0900 (Mon, 17 Sep 2007)
New Revision: 13457
Modified files:
branches/ruby_1_8_6/ChangeLog
branches/ruby_1_8_6/ruby.c
branches/ruby_1_8_6/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_6/ChangeLog?r1=13457&r2=13456
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8_6/version.h?r1=13457&r2=13456
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8_6/ruby.c?r1=13457&r2=13456
Index: ruby_1_8_6/ChangeLog
===================================================================
--- ruby_1_8_6/ChangeLog (revision 13456)
+++ ruby_1_8_6/ChangeLog (revision 13457)
@@ -1,3 +1,8 @@
+Mon Sep 17 04:52:21 2007 Yukihiro Matsumoto <matz@r...>
+
+ * 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@r...>
* range.c (range_step): fixed integer overflow. [ruby-dev:31763]
Index: ruby_1_8_6/version.h
===================================================================
--- ruby_1_8_6/version.h (revision 13456)
+++ ruby_1_8_6/version.h (revision 13457)
@@ -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
Index: ruby_1_8_6/ruby.c
===================================================================
--- ruby_1_8_6/ruby.c (revision 13456)
+++ ruby_1_8_6/ruby.c (revision 13457)
@@ -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