summaryrefslogtreecommitdiff
path: root/ruby.c
diff options
context:
space:
mode:
Diffstat (limited to 'ruby.c')
-rw-r--r--ruby.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby.c b/ruby.c
index 10a1813d07..763697b2f9 100644
--- a/ruby.c
+++ b/ruby.c
@@ -704,11 +704,11 @@ proc_options(argc, argv)
if (rb_safe_level() == 0 && (s = getenv("RUBYOPT"))) {
while (ISSPACE(*s)) s++;
- if (*s == '-' && *(s+1) == 'T') {
+ if (*s == 'T' || *s == '-' && *(s+1) == 'T') {
int numlen;
int v = 1;
- s += 2;
+ if (*s != 'T') ++s;
if (*++s) {
v = scan_oct(s, 2, &numlen);
if (numlen == 0) v = 1;