diff --git a/ChangeLog b/ChangeLog index 011844ecd3..9ade0b2992 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue May 24 11:56:25 2005 WATANABE Hirofumi + + * lib/getopts.rb: should warn only if verbose mode. + fixed: [ruby-dev:26201] + Tue May 24 06:45:31 2005 Nobuyoshi Nakada * misc/ruby-mode.el (ruby-font-lock-syntactic-keywords): string diff --git a/lib/getopts.rb b/lib/getopts.rb index f63bbfef6f..ddb0639db1 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$