[ruby/reline] Stop using chomp option of lines method

https://github.com/ruby/reline/commit/3e2f55c3e0
This commit is contained in:
aycabta 2020-09-09 17:44:44 +09:00
Родитель 0ec19cc843
Коммит 9baf1bd0a4
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -538,7 +538,7 @@ class Reline::LineEditor
return before if before.nil? || before.empty?
if after = @output_modifier_proc&.call("#{before.join("\n")}\n", complete: finished?)
after.lines("\n", chomp: true)
after.lines("\n").map { |l| l.chomp('') }
else
before
end