* lib/irb/input-method.rb, lib/irb.rb: Typo in
InputMethod#readable_atfer_eof? to #readable_after_eof? [ruby-core:51069] [Bug #7599] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38544 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
585afbbc6a
commit
e8a7607ed0
@ -1,3 +1,9 @@
|
|||||||
|
Sat Dec 22 02:29:00 2012 Zachary Scott <zachary@zacharyscott.net>
|
||||||
|
|
||||||
|
* lib/irb/input-method.rb, lib/irb.rb: Typo in
|
||||||
|
InputMethod#readable_atfer_eof? to #readable_after_eof?
|
||||||
|
[ruby-core:51069] [Bug #7599]
|
||||||
|
|
||||||
Sat Dec 22 02:19:38 2012 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
Sat Dec 22 02:19:38 2012 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||||
|
|
||||||
* vm_dump.c (rb_vm_bugreport): revert r38533.
|
* vm_dump.c (rb_vm_bugreport): revert r38533.
|
||||||
|
@ -459,7 +459,7 @@ module IRB
|
|||||||
if l = @context.io.gets
|
if l = @context.io.gets
|
||||||
print l if @context.verbose?
|
print l if @context.verbose?
|
||||||
else
|
else
|
||||||
if @context.ignore_eof? and @context.io.readable_atfer_eof?
|
if @context.ignore_eof? and @context.io.readable_after_eof?
|
||||||
l = "\n"
|
l = "\n"
|
||||||
if @context.verbose?
|
if @context.verbose?
|
||||||
printf "Use \"exit\" to leave %s\n", @context.ap_name
|
printf "Use \"exit\" to leave %s\n", @context.ap_name
|
||||||
|
@ -38,7 +38,7 @@ module IRB
|
|||||||
# read.
|
# read.
|
||||||
#
|
#
|
||||||
# See IO#eof for more information.
|
# See IO#eof for more information.
|
||||||
def readable_atfer_eof?
|
def readable_after_eof?
|
||||||
false
|
false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -74,7 +74,7 @@ module IRB
|
|||||||
# read.
|
# read.
|
||||||
#
|
#
|
||||||
# See IO#eof for more information.
|
# See IO#eof for more information.
|
||||||
def readable_atfer_eof?
|
def readable_after_eof?
|
||||||
true
|
true
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -170,7 +170,7 @@ module IRB
|
|||||||
# read.
|
# read.
|
||||||
#
|
#
|
||||||
# See IO#eof for more information.
|
# See IO#eof for more information.
|
||||||
def readable_atfer_eof?
|
def readable_after_eof?
|
||||||
true
|
true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user