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

* lib/irb.rb: suppoort [Feature#988], [ruby-core:21177].

* lib/irb/context.rb: fix Context#verbose?.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27117 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
keiju 2010-03-30 13:03:23 +00:00
parent 08f828002b
commit 6ca6efc246
3 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Tue Mar 30 22:00:44 2010 Keiju Ishitsuka <keiju@ruby-lang.org>
* lib/irb.rb: suppoort [Feature#988], [ruby-core:21177].
* lib/irb/context.rb: fix Context#verbose?.
Tue Mar 30 21:56:33 2010 Tanaka Akira <akr@fsij.org>
* time.c: make wide value more polymorphic.

View file

@ -144,6 +144,8 @@ module IRB
if @context.verbose?
printf "Use \"exit\" to leave %s\n", @context.ap_name
end
else
print "\n"
end
end
l

View file

@ -150,6 +150,8 @@ module IRB
else
false
end
else
@verbose
end
end