summaryrefslogtreecommitdiff
path: root/ruby.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-01-25 08:10:33 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-01-25 08:10:33 +0000
commit5ff5e1c91d436e44b6ecd2a8c74c191252af2ed6 (patch)
treef06ae2820bc43cc59c8d277819236417b40aead9 /ruby.c
parent17e40d68e09563188e7edc49a24c55b853e61d11 (diff)
* ruby.c (proc_options): correct -T option in RUBYOPT.
fixed: [ruby-dev:25512] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7824 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
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 773ef7b814..48b8dba24f 100644
--- a/ruby.c
+++ b/ruby.c
@@ -709,11 +709,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;