[ruby/reline] Add workspace member for the latest IRB's implementation

https://github.com/ruby/reline/commit/8b55fc8fee
This commit is contained in:
aycabta 2021-08-13 13:44:40 +09:00
Родитель a2f649374d
Коммит 2c056816c4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -20,7 +20,7 @@ end
class AutoIndent < RubyLex
def initialize
set_input(self)
context = Struct.new(:auto_indent_mode).new(true)
context = Struct.new(:auto_indent_mode, :workspace).new(true, nil)
set_auto_indent(context)
end