From b215f6d24bd1e2958790bff6d6c83668c20fb28d Mon Sep 17 00:00:00 2001 From: eban Date: Tue, 24 May 2005 03:01:17 +0000 Subject: * 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 --- lib/getopts.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') 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 # -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$ -- cgit