ruby-changes:1943
From: ko1@a...
Date: 12 Sep 2007 23:17:48 +0900
Subject: [ruby-changes:1943] matz - Ruby:r13434 (ruby_1_8): * ruby.c (proc_options): -W should be allowed in RUBYOPT
matz 2007-09-12 23:17:33 +0900 (Wed, 12 Sep 2007)
New Revision: 13434
Modified files:
branches/ruby_1_8/ChangeLog
branches/ruby_1_8/ruby.c
branches/ruby_1_8/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/ChangeLog?r1=13434&r2=13433
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8/version.h?r1=13434&r2=13433
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8/ruby.c?r1=13434&r2=13433
Index: ruby_1_8/ChangeLog
===================================================================
--- ruby_1_8/ChangeLog (revision 13433)
+++ ruby_1_8/ChangeLog (revision 13434)
@@ -1,3 +1,8 @@
+Wed Sep 12 23:12:22 2007 Yukihiro Matsumoto <matz@r...>
+
+ * ruby.c (proc_options): -W should be allowed in RUBYOPT
+ environment variable. [ruby-core:12118]
+
Mon Sep 10 01:05:25 2007 Yukihiro Matsumoto <matz@r...>
* range.c (range_step): fixed integer overflow. [ruby-dev:31763]
Index: ruby_1_8/version.h
===================================================================
--- ruby_1_8/version.h (revision 13433)
+++ ruby_1_8/version.h (revision 13434)
@@ -1,7 +1,7 @@
#define RUBY_VERSION "1.8.6"
-#define RUBY_RELEASE_DATE "2007-09-10"
+#define RUBY_RELEASE_DATE "2007-09-12"
#define RUBY_VERSION_CODE 186
-#define RUBY_RELEASE_CODE 20070910
+#define RUBY_RELEASE_CODE 20070912
#define RUBY_PATCHLEVEL 5000
#define RUBY_VERSION_MAJOR 1
@@ -9,7 +9,7 @@
#define RUBY_VERSION_TEENY 6
#define RUBY_RELEASE_YEAR 2007
#define RUBY_RELEASE_MONTH 9
-#define RUBY_RELEASE_DAY 10
+#define RUBY_RELEASE_DAY 12
#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];
Index: ruby_1_8/ruby.c
===================================================================
--- ruby_1_8/ruby.c (revision 13433)
+++ ruby_1_8/ruby.c (revision 13434)
@@ -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