Skip to content

Commit e0afcb0

Browse files
committed
* ruby.c (proc_options): -W should be allowed in RUBYOPT
environment variable. [ruby-core:12118] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_5@13455 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 30e6932 commit e0afcb0

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Mon Sep 17 04:47:02 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
2+
3+
* ruby.c (proc_options): -W should be allowed in RUBYOPT
4+
environment variable. [ruby-core:12118]
5+
16
Mon Sep 17 04:31:46 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
27

38
* range.c (range_step): fixed integer overflow. [ruby-dev:31763]

ruby.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ proc_options(argc, argv)
775775
}
776776
}
777777
if (!*s) break;
778-
if (!strchr("IdvwrK", *s))
778+
if (!strchr("IdvwWrK", *s))
779779
rb_raise(rb_eRuntimeError, "illegal switch in RUBYOPT: -%c", *s);
780780
s = moreswitches(s);
781781
}

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define RUBY_RELEASE_DATE "2007-09-17"
33
#define RUBY_VERSION_CODE 185
44
#define RUBY_RELEASE_CODE 20070917
5-
#define RUBY_PATCHLEVEL 110
5+
#define RUBY_PATCHLEVEL 111
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8

0 commit comments

Comments
 (0)