diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-05-24 03:01:17 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-05-24 03:01:17 +0000 |
| commit | b215f6d24bd1e2958790bff6d6c83668c20fb28d (patch) | |
| tree | 4aa8d4557e7ad6826dade835090a1768b851e89d /lib | |
| parent | 698dbf0c4f4bb76f0c8b1a0b22cc303e8fa61079 (diff) | |
| download | ruby-b215f6d24bd1e2958790bff6d6c83668c20fb28d.tar.gz ruby-b215f6d24bd1e2958790bff6d6c83668c20fb28d.tar.xz ruby-b215f6d24bd1e2958790bff6d6c83668c20fb28d.zip | |
* lib/getopts.rb: should warn only if verbose mode.
fixed: [ruby-dev:26201]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8513 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/getopts.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/getopts.rb b/lib/getopts.rb index f63bbfef6..ddb0639db 100644 --- a/lib/getopts.rb +++ b/lib/getopts.rb @@ -15,7 +15,7 @@ # rewritten by Akinori MUSHA <knu@ruby-lang.org> # -warn "Warning:#{caller[0].sub(/:in `.*'\z/, '')}: getopts is deprecated after Ruby 1.8.1; use optparse instead" if caller[0] +warn "Warning:#{caller[0].sub(/:in `.*'\z/, '')}: getopts is deprecated after Ruby 1.8.1; use optparse instead" if caller[0] and $VERBOSE $RCS_ID=%q$Header$ |
