File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
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
+
1
6
Mon Sep 17 04:31:46 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
2
7
3
8
* range.c (range_step): fixed integer overflow. [ruby-dev:31763]
Original file line number Diff line number Diff line change @@ -775,7 +775,7 @@ proc_options(argc, argv)
775
775
}
776
776
}
777
777
if (!* s ) break ;
778
- if (!strchr ("IdvwrK " , * s ))
778
+ if (!strchr ("IdvwWrK " , * s ))
779
779
rb_raise (rb_eRuntimeError , "illegal switch in RUBYOPT: -%c" , * s );
780
780
s = moreswitches (s );
781
781
}
Original file line number Diff line number Diff line change 2
2
#define RUBY_RELEASE_DATE "2007-09-17"
3
3
#define RUBY_VERSION_CODE 185
4
4
#define RUBY_RELEASE_CODE 20070917
5
- #define RUBY_PATCHLEVEL 110
5
+ #define RUBY_PATCHLEVEL 111
6
6
7
7
#define RUBY_VERSION_MAJOR 1
8
8
#define RUBY_VERSION_MINOR 8
You can’t perform that action at this time.
0 commit comments