1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/irb/init.rb (IRB.parse_opts): set VERBOSE to true when debug

switch called in irb.  a patch from Andrew Grimm in
  [ruby-core:31558].

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28816 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2010-08-01 01:48:57 +00:00
parent 6ad3f61663
commit ffe49186c9
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,9 @@
Sun Aug 1 10:23:48 2010 Yusuke Endoh <mame@tsg.ne.jp>
* lib/irb/init.rb (IRB.parse_opts): set VERBOSE to true when debug
switch called in irb. a patch from Andrew Grimm in
[ruby-core:31558].
Sun Aug 1 09:35:35 2010 Yusuke Endoh <mame@tsg.ne.jp>
* bignum.c (big_op): comparison of bignum and infinity has returned 1

View file

@ -135,6 +135,7 @@ module IRB
@CONF[:MATH_MODE] = true
when "-d"
$DEBUG = true
$VERBOSE = true
when "-w"
$VERBOSE = true
when /^-W(.+)?/