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

Add Reline.delete_text that raises NotImplementedError

This commit is contained in:
aycabta 2019-05-01 00:45:54 +09:00
parent c06821161a
commit 3de03544ff

View file

@ -77,6 +77,10 @@ module Reline
@@dig_perfect_match_proc = p
end
def self.delete_text(start = nil, length = nil)
raise NotImplementedError
end
if IS_WINDOWS
require 'reline/windows'
else