aboutsummaryrefslogtreecommitdiffstats
path: root/lib/irb/input-method.rb
diff options
context:
space:
mode:
authoraycabta <aycabta@gmail.com>2019-05-27 10:18:09 +0900
committeraycabta <aycabta@gmail.com>2019-05-27 10:18:09 +0900
commit9840f52c77a928479919e539d2e47ce36b5ede49 (patch)
tree6cef0f5ca1a9a37f5e642791fd80ec2a4eef4586 /lib/irb/input-method.rb
parent1d301acbe8e9b0df7872d6719d6646ade25630d6 (diff)
downloadruby-9840f52c77a928479919e539d2e47ce36b5ede49.tar.gz
Use IRB::InputMethod#eof? to quit
Diffstat (limited to 'lib/irb/input-method.rb')
-rw-r--r--lib/irb/input-method.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb/input-method.rb b/lib/irb/input-method.rb
index 64b1e018d9..9d3580a192 100644
--- a/lib/irb/input-method.rb
+++ b/lib/irb/input-method.rb
@@ -260,7 +260,7 @@ module IRB
#
# See IO#eof? for more information.
def eof?
- @eof
+ super
end
# Whether this input method is still readable when there is no more data to